//CONTACT FORM VALIDATION
function validation ()
	{
	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.message.value == "")
		{
		alert ( "Please fill in the 'Comments' field." );
		valid = false;
		return valid;
		}
	
	if (document.cform.security_code.value == "")
		{
		alert ( "Please fill in the 'Security Code' field." );
		valid = false;
		return valid;
		}
		
    return valid;
	}
