
function popup(url){
	h=600;
	l=680;
	hauteur=Math.round((screen.availHeight-h)/2);
	largeur=Math.round((screen.availWidth-l)/2);
	fen = window.open(url, "site", "toolbar=0,location=0,directories=0,status=0,scrollbars=1, resizable=1,menubar=0,top="+hauteur+",left="+largeur+",width="+l+",height="+h);
	fen.focus();
}

function startList() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
					this.style.zIndex="100";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
					this.style.zIndex="5";
				}
			}
		}
	}
}

window.onload=startList;

function transcript(){
	  	var oDynC;
	  	var oNormC;
	    oDynC = document.getElementById('contenuDyn');
	    oNormC = document.getElementById('contenuFake');
	    oNormC.innerHTML = oDynC.innerHTML;
	    //oDynC.innerHTML='';	
}
