//-- Contact Form

function checkForm(form){
	with(form){
		if(!contact_name.value || contact_name.value == ""){
			alert('You did not fill in the Contact Name');
			contact_name.focus();
			return false;
		}

		if(!contact_email.value || contact_email.value == ""){
			alert('You did not fill in the Contact Email');
			contact_email.focus();
			return false;
		}

		if(!contact_subject.value || contact_subject.value == ""){
			alert('You did not fill in the Message Subject');
			contact_subject.focus();
			return false;
		}

		if(!contact_body.value || contact_body.value == ""){
			alert('You did not fill in the Message Body');
			contact_body.focus();
			return false;
		}
	}
}