function writeSwf(urlSwf, L, H, varFlash) {
	codeSwf = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+L+'" height="'+H+'">';
	codeSwf += '<param name="movie" value="'+urlSwf+'" />';
	codeSwf += '<param name="quality" value="high" />';
	codeSwf += '<param name="wmode" value="transparent" />';
	codeSwf += '<param name="FlashVars" value="'+varFlash+'" />';
	codeSwf += '<embed wmode="transparent" FlashVars="'+varFlash+'" src="'+urlSwf+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+L+'" height="'+H+'">';
	codeSwf += '</embed></object>';
	document.write(codeSwf);	
}


function goto(form) { var index=form.select.selectedIndex
if (form.select.options[index].value != "0") {
location=form.select.options[index].value;}}

function gotoalternativ(form) { var index=form.id.selectedIndex
if (form.id.options[index].value != "0") {
location=form.id.options[index].value;}}

function initMenu() {
	liens = document.getElementById("menu").getElementsByTagName("li");
	for ( var i=0; i<liens.length; i++ ) {
		if ( liens[i].getElementsByTagName("ul")[0] ) {
			liens[i].onmouseover = function() {
				this.getElementsByTagName("ul")[0].style.visibility = "visible";
			}
			liens[i].onmouseout = function() {
				this.getElementsByTagName("ul")[0].style.visibility = "hidden";
			}			
		} 	
	}
}

window.onload = function() {
	if ( document.getElementById("menu") ) initMenu();	
}