var x=screen.width;
if(x!=800)
{
document.writeln('<link rel="stylesheet" type="text/css" href="styles/mainstyle.css">');
}
else
{
document.writeln('<link rel="stylesheet" type="text/css" href="styles/mainstyle_800.css">');
}

function empfehlung()
{
document.getElementById("empfehlung").style.visibility="visible";
document.frm_empfehlung.mail.focus();
}

function hide_empfehlung()
{
document.getElementById("empfehlung").style.visibility="hidden";
}

function send_form(seite)
{
var mail_length=document.frm_empfehlung.mail.value;

	if(mail_length.indexOf('@') < 0 || mail_length.length < 5)
	{
	alert("Prego inserire l’indirizzo e-mail del destinatario");
	return;
	}
	else
	{
	document.frm_empfehlung.form_ok.value="ok";
	document.frm_empfehlung.method="post";	
	document.frm_empfehlung.action=seite;
	document.getElementById("empfehlung").style.visibility="hidden";
	alert("Il vostro e-mail è stata eseguita con successo");
	document.frm_empfehlung.submit();
	}
}

