// Formvalidation for tagwall form

function AddTagwallMessage() {
	
	if (document.TagwallForm.Header.value=="")
	{ alert("Du har ikke indtastet et emne");
	document.TagwallForm.Header.focus();
	return false;}
	
	else if (document.TagwallForm.Content.value=="")
	{ alert("Du har ikke indtastet en besked");
	document.TagwallForm.Content.focus();
	return false;}
	
	else if (document.TagwallForm.UserName.value=="")
	{ alert("Du har ikke indtastet dit navn");
	document.TagwallForm.UserName.focus();
	return false;}
	
	else if (document.TagwallForm.captchacode.value=="")
	{ alert("Du har ikke indtastet sikkerhedskoden");
	document.TagwallForm.captchacode.focus();
	return false;}
	
	return true;
}