function checkit()
{
	
	temp = document.getElementById('disclaimer');	
	if(temp)
	{
		if(temp.checked)
			check = 1;
		else
			check = 0;
	}
	else
		check = 0;
	
	if(check == 0)
	{
		alert("Sinun tulee hyväksyä tilausehdot ennen tilaamista!");
		return false;
	}
	else
	{
		return true;
	}
}

function isValidEmail(str) 
{
   return (str.indexOf(".") > 2) && (str.indexOf("@") > 0);
}
