// JavaScript Document
function ChargeFlashAncien(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://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,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='high'>");
	OpenWindow.document.write("<embed src='"+CheminFlash+"' width='"+LargeurFlash+"' height='"+HauteurFlash+"' quality='high' loop='false' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'>");
	OpenWindow.document.write("</embed>");
	OpenWindow.document.write("</object>");
	OpenWindow.document.write("</body>");
	OpenWindow.document.write("</HTML>");
}

function ChargeFlash(CheminFlash,LargeurFlash,HauteurFlash,Titre)
{
	OpenWindow=window.open("/NouveauSite/includes/videos.php?titre="+Titre+"&source="+CheminFlash+"&hauteur="+HauteurFlash+"&largeur="+LargeurFlash, "FenetreVideoFlash", "height="+HauteurFlash+",width="+LargeurFlash+",location=no,toolbar=no,scrollbars=no,menubar=no");
}

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();
}
