// FORM VALIDATION

function validation_news ()
	{
	valid = true;

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

function validation_contact ()
	{
	valid = true;

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