//CONTACT FORM VALIDATION
function hform_valid ()
	{
	valid = true;

    if (document.hform.name.value == "")
		{
		alert ( "Please fill in the 'Name' field." );
		valid = false;
		return valid;
		}
	
	if (document.hform.email.value == "")
		{
		alert ( "Please fill in the 'E-mail' field." );
		valid = false;
		return valid;
		}
	
	if (document.hform.phone.value == "")
		{
		alert ( "Please fill in the 'Phone' field." );
		valid = false;
		return valid;
		}
		
		
    if (document.hform.message.value == "")
		{
		alert ( "Please fill in the 'Message' field." );
		valid = false;
		return valid;
		}
		
	window.alert('Your submission has been sent, thank you.');
    return valid;
	}
