function EmailCheck()
{

	// email
	if (document.newsletter.txtEmail.value=='')
	{	
		alert("Ange din e-postadress"); 
		document.newsletter.txtEmail.focus();
		 return false;
	}

	
	document.newsletter.submit();
		
}


function ExpertCheck()
{

	// body
	if (document.expert.txtBody.value=='')
	{	
		alert("Skriv en fr&aring;ga"); 
		document.expert.txtBody.focus();
		 return false;
	}
	
	// name
	if (document.expert.txtName.value=='')
	{	
		alert("Ange ditt namn"); 
		document.expert.txtName.focus();
		 return false;
	}
	
	// city
	if (document.expert.txtCity.value=='')
	{	
		alert("Ange vilken stad du kommer ifrån"); 
		document.expert.txtCity.focus();
		 return false;
	}

	
	document.expert.submit();
		
}



function BlogCommentsCheck()
{

	// name
	if (document.AddBlogComments.txt_name.value=='')
	{	
		alert("Ange ditt namn"); 
		document.AddBlogComments.txt_name.focus();
		 return false;
	}
	
	// headline
	if (document.AddBlogComments.txt_headline.value=='')
	{	
		alert("Ange en rubrik"); 
		document.AddBlogComments.txt_headline.focus();
		 return false;
	}
	
	// comment
	if (document.AddBlogComments.txt_message.value=='')
	{	
		alert("Skriva en kommentar"); 
		document.AddBlogComments.txt_message.focus();
		 return false;
	}
	
	// comment
	if (document.AddBlogComments.strCAPTCHA.value=='')
	{	
		alert("Verifiera din kod"); 
		document.AddBlogComments.strCAPTCHA.focus();
		 return false;
	}

	
	document.AddBlogComments.submit();
		
}
