// ******************************************************************
// Check For Mandatory Fields
// ******************************************************************

function checkValidity()
{
	var returnValue = true;

	if (document.subscribe.lcname.value == "")
	{
		alert("Volle naam moet ingevuld worden");
		document.subscribe.lcname.focus();
		returnValue = false;
	}
	else if (document.subscribe.lcphone.value == "")
	{
		alert("Telefoonnummer moet ingevuld worden");
		document.subscribe.lcphone.focus();
		returnValue = false;
	}
return returnValue;
}