// JavaScript Document


function popup_anim(page,largeur,hauteur,options) {
  //var top=(screen.height-hauteur)/2;
  var top=160;
  var left=((screen.width-largeur)/2)-10;
  window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}

function popup(titre,fichier)
	{
		var top=(screen.height-359)/2;
	 	var left=(screen.width-376)/2;
		//alert(screen.height);
		w=open('','','width=376,height=359,top='+top+',left='+left+',toolbar=no,scrollbars=no,resizable=no');
		w.document.write("<TITLE>::::. "+titre+" .::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::</TITLE>");
		w.document.write("<body bgcolor='#000000' topmargin=0 rightmargin=0 leftmargin=0 bottommargin=0>");
		w.document.write("<table bordercolor='#000000' width='100%' height='100%'  align='center' valign='absmiddle' cellpadding='0' cellspacing='0'><tr><td  border='0'>");
		w.document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='376' height='359'>");
		w.document.write("<param name='movie' value='video/video.swf?fichier_video="+fichier+"&titre_video="+titre+"'>");
		w.document.write("<param name='quality' value='high'><param name='bgcolor' value='#000000' />");
		w.document.write("<embed src='video/video.swf?fichier_video="+fichier+"'  bgcolor='#000000' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='376' height='359'></embed>");
		w.document.write("</object>");
		w.document.write("</td></tr></table>");
		w.document.write("</body>");
		w.document.close();
	}



