var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1; 
var doc = InternetExplorer ? document : window.document; 

function afficheDiv(nom){
	doc.getElementById(nom).style.visibility = 'visible';
	
  if(nom != "projet")
	doc.getElementById("projet").style.visibility = 'hidden';
  if(nom != "homme")
	doc.getElementById("homme").style.visibility = 'hidden';
  if(nom != "demain")
	doc.getElementById("demain").style.visibility = 'hidden';
}


function afficheVideo(nom, type){
	var width, height;
  if(type == "hautdebit"){
  	width = "366";
	height= "352";
	doc.getElementById("img_basdebit").src = 'images/but_basdebit.gif';
	doc.getElementById("img_hautdebit").src = 'images/but_hautdebit-on.gif';
	}
	
  if(type == "basdebit"){
  	width = "366";
	height= "352";
	doc.getElementById("img_basdebit").src = 'images/but_basdebit-on.gif';
	doc.getElementById("img_hautdebit").src = 'images/but_hautdebit.gif';
	}
	
	
	var codeHtml = '<div id="' + type + '"><object classid="clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6"  width="' + width + '" height="' + height + '" align="top">'+
					'<param name="autoStart" value="1" />'+
					'<PARAM NAME="target" VALUE="myself" />'+
					'<param name="URL" value="' + nom +'" />'+
					'<PARAM NAME="src" VALUE="' + nom +'" />'+
					'<embed src="' + nom +'" width="'+ width + '" height="' + height + '" autostart="true" align="top" ></embed></object></div>';

	doc.getElementById("video").innerHTML = codeHtml;			
	
}


function popup(nom,w,h,s){
fenetre=open(nom,'_blank','status=no,location=no,scrollbars='+s+',toolbar=no,directories=no,resizable=no,width='+w+',height='+h+',top=10,left=10');
}

