// GESTIONE MENU
var proSelect = 'MO';

function mbLoad(id, content) { // Caricamento del framework Menu
	for(i=1; i<content.length; i++) {
		var dom = document.getElementById(id+content[i]).getElementsByTagName('a');
		document.getElementById(id+content[i]).onmouseover = Function('mbOver("'+id+'", '+content[i]+')');
		document.getElementById(id+content[i]).title = dom[0].title;
		document.getElementById(id+content[i]).onclick = Function('mbClick("'+id+'", '+content[i]+')');
		document.getElementById(id+content[i]).onmouseout = Function('mbOut("'+id+'", '+content[i]+')');
	}
}

function mbOver(id, num) { // Sono sopra all'oggetto
	document.getElementById(id+num).className = 'liOver';
}

function mbOut(id, num) { // Esco dall'oggetto
	document.getElementById(id+num).className = 'liOut';
}

function mbClick(id, num) { // Premo sull'oggetto
	var dom = document.getElementById(id+num).getElementsByTagName('a');
	if(!dom[0].onclick)
		window.location.href = dom[0].href;
}

function loadFlash(file, height, width) {
	// Cerco di superare i problemi tecnici con i flash in IE!!!
	document.write("<OBJECT CLASSID='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' WIDTH='"+width+"' HEIGHT='"+height+"' ");
	document.write("CODEBASE='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0'> ");
	document.write("<PARAM NAME='MOVIE'  VALUE='"+URL_TEMA_REMOTO+"/_flash/"+file+".swf'> ");
	document.write("<PARAM NAME='QUALITY' VALUE='high'> ");
	document.write("<param name='menu' value='false' /> ");
	document.write("<EMBED SRC='"+URL_TEMA_REMOTO+"/_flash/"+file+".swf' ");
	document.write("WIDTH='"+width+"' HEIGHT='"+height+"' QUALITY='high' menu='false' "); 
	document.write("PLUGINSPAGE='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash'> ");
	document.write("</EMBED> </OBJECT> ");
}

function loadFlashShared(file, height, width) {
	// Cerco di superare i problemi tecnici con i flash in IE!!!
	document.write("<OBJECT CLASSID='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' WIDTH='"+width+"' HEIGHT='"+height+"' ");
	document.write("CODEBASE='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0'> ");
	document.write("<PARAM NAME='MOVIE'  VALUE='"+URL_LABEL_REMOTO+"/shared/"+file+"'> ");
	document.write("<PARAM NAME='QUALITY' VALUE='high'> ");
	document.write("<param name='menu' value='false' /> ");
	document.write("<EMBED SRC='"+URL_LABEL_REMOTO+"/shared/"+file+"' ");
	document.write("WIDTH='"+width+"' HEIGHT='"+height+"' QUALITY='high' menu='false' "); 
	document.write("PLUGINSPAGE='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash'> ");
	document.write("</EMBED> </OBJECT> ");
}