function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
 }
 startList = function() {
	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";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;

function popLargeImage(url) {
	popL = window.open('','LargeImage','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=10,height=10');
	popL.document.write('<html><head><title>Stages Dégustation et cours oenologie - Institut du gout des vins</title>');
	popL.document.write('<scr'+'ipt language="JavaScript">');
	popL.document.write('function resizeWin() { window.resizeTo(document.images[0].width+9,document.images[0].height+55); self.focus(); }');
	popL.document.write('</scr'+'ipt>');
	popL.document.write('</head>');
	popL.document.write('<body onblur="self.close();" onload="resizeWin();" bgcolor="#ffffff" topmargin="0" marginheight="0" leftmargin="0" marginwidth="0">');
	popL.document.write('<img src="'+url+'" border="0">');
	popL.document.write('</body></html>');
	popL.document.close();
}