// JavaScript Document
function ChargeFlash(CheminFlash,LargeurFlash,HauteurFlash,Titre)
{
	OpenWindow=window.open("", "FenetreVideoFlash", "height="+HauteurFlash+",width="+LargeurFlash+",toolbar=no,scrollbars=no,menubar=no");
	OpenWindow.document.write("<HEAD>");
	OpenWindow.document.write("<link rel='shortcut icon' type='image/ico' href='/NouveauSite/favicon.ico'>");
	OpenWindow.document.write("</HEAD>");
	OpenWindow.document.write("<HTML>");
	OpenWindow.document.write("<TITLE>"+Titre+"</TITLE>");
	OpenWindow.document.write("<BODY style='margin: 0;padding: 0;'>");
	OpenWindow.document.write("<OBJECT classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' width="+LargeurFlash+" height="+HauteurFlash+" codebase='http://active.macromedia.com/flash5/cabs/swflash.cab#version=5,0,0,0'>");
	OpenWindow.document.write("<param name=movie value='"+CheminFlash+"'>");
	OpenWindow.document.write("<param name=play value=true>");
	OpenWindow.document.write("<param name=loop value=false>");
	OpenWindow.document.write("<param name=quality value=low>");
	OpenWindow.document.write("<embed src='"+CheminFlash+"' width="+LargeurFlash+" height="+HauteurFlash+" quality=low loop=false type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash'>");
	OpenWindow.document.write("</embed>");
	OpenWindow.document.write("</object>");
	OpenWindow.document.write("</HTML>");
	OpenWindow.document.close();
}

function ChargeFilm(CheminFilm)
{
	OpenWindow=window.open("", "FenetreVideo", "height=480,width=640,toolbar=no,scrollbars=no,menubar=no");
	OpenWindow.document.write("<HEAD>");
	OpenWindow.document.write("<link rel='shortcut icon' type='image/ico' href='/NouveauSite/favicon.ico'>");
	OpenWindow.document.write("</HEAD>");
	OpenWindow.document.write("<HTML>");
	OpenWindow.document.write("<TITLE>&#8220;Comment faire ?&#8221; - Vid&eacute;o pour <?php echo($titretitre)?></TITLE>");
	OpenWindow.document.write("<BODY style='margin: 0;padding: 0;'>");
	OpenWindow.document.write("<EMBED width='640' height='480' SRC='"+CheminFilm+"' AUTOSTART=true id='Lecteur' showcontrols='true' showstatusbar='true' showdisplay='false' name='Lecteur' border=1></EMBED>");
	OpenWindow.document.write("</HTML>");
	OpenWindow.document.close();
}
