/*
	Europeiska Motor AB,
	toyotacenter.nu
	
	EmDefault.js  - Default functions for the site..

*/

function $(id)
{
	return document.getElementById(id);
}

function DelayedRedirect(url, timeout)
{
	setTimeout('window.location = \''+url+'\';', timeout);
}

function Switch(from, to)
{
	if($(from).style.display != 'none')
	{
		$(from).style.display = 'none';
		$(to).style.display = 'block';
		
		return;
	}
}

function ValidateContactForm()
{
	var Error = false;
	if($("frmKontaktaName").value == "") Error = "Vänligen fyll i ert namn.";
	if(($("frmKontaktaMail").value == "") || ($("frmKontaktaMail").value.indexOf("@") == -1)) Error = "Vänligen ange en giltig e-postadress.";
	if($("frmKontaktaPhoneday").value == "") Error = "Vänligen ange ert telefonnummer.";
	if($("frmKontaktaMessage").value == "") Error = "Vänligen skriv ert meddelande.";
	
	if(Error)
	{
		alert(Error);
		return false;
	}
	else
	{
		return true;
	}
}




