function openWindow(url,largeur,hauteur) {
	var options = "width="+largeur+",height="+hauteur+", ";
	options += "resizable=yes,scrollbars=yes,status=no,";
	options += "menubar=no,toolbar=no,location=no,directories=no";
	var newWin = window.open(url,"_blank",options);
	newWin.focus();
};
function openWindow2(url,largeur,hauteur) {
	var options = "width="+largeur+",height="+hauteur+", ";
	options += "resizable=yes,scrollbars=yes,status=no,";
	options += "menubar=no,toolbar=no,location=no,directories=no";
	var newWin = window.open(url,"_blank",options);
	newWin.focus();
};
function favBrowser() {
	var mylist=document.getElementById("myList");
	var aviPath="http://www.sei-sen.be/videos/SIKA2007_";
	laVideoDiv=document.getElementById("lavideo" );
	if (mylist.selectedIndex == 0) 	{
		wmPlayer.controls.stop();
		return;
	}
	//CREATION DU CHEMIN DE LA VIDEO
	if (mylist.selectedIndex < 9) {
		aviPath = aviPath + "0"  + (mylist.selectedIndex ) + ".mpg";
	} else {
		aviPath = aviPath + ( mylist.selectedIndex )  + ".mpg";
	}
	 //alert(aviPath);
	// EXECUTER LA VIDEO A LA SELECTION
	//wmPlayer.url= aviPath;
	//wmPlayer.src= aviPath;
	laVideoDiv.innerHTML="<object id=\"winplayer\" classid=\"clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6\" type=\"application/x-oleobject\" width=\"320\" height=\"320\"><param name=\"url\" value=\""+aviPath+"\"/><param name=\"autostart\" value=\"false\" /><param name=\"stretchtofit\" value=\"true\" /><param name=\"uiMode\" value=\"full\" /><embed src=\""+aviPath+"\" autostart=\"false\" uiMode=\"full\" type=\"application/x-mplayer2\" pluginspage=\"http://www.microsoft.com/windows/mediaplayer/\" width=\"245\" height=\"240\"></embed></object>";
	var wmPlayer=document.getElementById("winplayer");
	wmPlayer.controls.play();
};


