// ******************************************************************
// Check For Mandatory Fields
// ******************************************************************

function checkValidity()
{
	var returnValue = true;

	if (document.subscribe.name.value == "")
	{
		alert("het veld Naam moet ingevuld worden ");
		document.subscribe.name.focus();
		returnValue = false;
	}
	else if (document.subscribe.phone.value == "")
	{
		alert("het veld Phone moet ingevuld worden ");
		document.subscribe.phone.focus();
		returnValue = false;
	}
return returnValue;
}