function FlashIntro()
{
 document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="500" height="500" title="">\n');
 
document.write('<param name="movie" value="swf/intro.swf" />\n');

document.write('<param name="quality" value="high">\n');

document.write('<embed src="swf/intro.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="500" height="500">\n');

document.write('</embed>\n');

document.write('</object>\n');
}

// ------------------------------------------------------------------------------------

function FlashCarte()
{
 document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="419" height="340" title="">\n');
 
document.write('<param name="movie" value="swf/carte.swf" />\n');

document.write('<param name="quality" value="high">\n');

document.write('<embed src="swf/carte.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="419" height="340">\n');

document.write('</embed>\n');

document.write('</object>\n');

}

//-----------------------------------------------------------------------------------------

function PopupImage(img) {
	titre="Au Moussaillon";
	w=open("",'image','width=400,height=400,toolbar=no,scrollbars=no,resizable=yes');	
	w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>");
	w.document.write("<SCRIPT>function checksize()  { if (document.images[0].complete) {  window.resizeTo(document.images[0].width+12,document.images[0].height+60); window.focus();} else { setTimeout('check()',250) } }</"+"SCRIPT>");
	w.document.write("<BODY onload='checksize()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0><a href=# onClick=javascript:window.close() mousebotton=right onmousedown=javascript:window.close()><IMG src='"+img+"' border=0></a>");
	w.document.write("");
	w.document.write("</BODY></HTML>");
	w.document.close();
}