function embed(url,width,height){
	document.write ('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="' + width + '" height="' + height + '">\n');
	document.write ('<param name="movie" value="' + url + '">\n');
	document.write ('<param name="quality" value="high">\n');
	document.write ('<param name="menu" value="false">\n');
	document.write ('<param name="wmode" value="transparent">\n');
	document.write ('<embed src="' + url + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '" wmode="transparent"></embed></object>\n');
}
function pagReferenza(pag){
	makeRequest("include/siti.asp?pag=" + pag,"referenze","new");
}
function showToolTip(e,text){
	if(document.all)e = event;
	var obj = document.getElementById('tooltip');
	var obj2 = document.getElementById('tooltip_content');
	obj2.innerHTML = text;
	obj.style.display = 'block';
	var st = Math.max(document.body.scrollTop,document.documentElement.scrollTop);
	var leftPos = e.clientX - 20;
	if(leftPos<0)leftPos = 0;
	obj.style.left = leftPos + 'px';
	obj.style.top = e.clientY - obj.offsetHeight -1 + st + 'px';
}
function hideToolTip(){
	document.getElementById('tooltip').style.display = 'none';
}
function infoModuloContatti(destinatario){
	if(destinatario == "informazioni"){
		document.getElementById("infoModulo").innerHTML = "Il messaggio sarà recapitato a: Sede operativa";
	}
	if(destinatario == "commerciale"){
		document.getElementById("infoModulo").innerHTML = "Il messaggio sarà recapitato a: Ufficio Commerciale";
	}
	if(destinatario == "amministrazione"){
		document.getElementById("infoModulo").innerHTML = "Il messaggio sarà recapitato a: Ufficio Amministrativo";
	}
}
function checkFormContatti(){
	if(document.getElementById("nome").value == "" | document.getElementById("email").value == "" | document.getElementById("telefono").value == "" | document.getElementById("messaggio").value == ""){
		alert("Tutti i campi sono di compilazione obbligatoria!");
		return false;
	}
}
function checkFormContatti(){
	if(document.getElementById("nome").value == "" | document.getElementById("email").value == "" | document.getElementById("telefono").value == "" | document.getElementById("messaggio").value == ""){
		alert("Tutti i campi sono di compilazione obbligatoria!");
		return false;
	}
}
function checkFormAssistenzaOnline(){
	if(document.getElementById("tipologia_intervento").value == "" | document.getElementById("ragione_sociale").value == "" | document.getElementById("persona_riferimento").value == "" | document.getElementById("email_mittente").value == "" | document.getElementById("telefono").value == "" | document.getElementById("note").value == ""){
		alert("Tutti i campi sono di compilazione obbligatoria!");
		return false;
	}
}
