/* auteur: MARTINE LE BERRE */
/* Date de création: 21/02/03 */

function afficherPage (url)
{
  page = window.open (url,'','scrollbars=yes,resizable=yes')
}

function afficherPage2 (url)
{
  page = window.open (url,'')
}

function afficherImage (image,largeur,hauteur)
{
  if (document.layers)
  	photo = window.open ('','POSTURE','left=100,top=60,width='+largeur+',height='+hauteur+',scrollbars=no,resizable=no')
	else
  	photo = window.open ('','','left=100,top=60,width='+largeur+',height='+hauteur+',scrollbars=no,resizable=no')
  photo.document.write('<HTML><HEAD>')
  photo.document.write ('<TITLE>Yoga</TITLE>')
  photo.document.write ('<LINK href="../style.css" rel=stylesheet>')
  photo.document.write('</HEAD>')
  photo.document.write('<BODY class="Posture">')
  photo.document.write('<CENTER><IMG src='+image+' align="middle"></CENTER>')
  photo.document.write('</BODY>')
  photo.document.write('</HTML>')
  photo.document.close()
}