function checkform(form){
	if (document.contact.f_name.value == "") {
		alert( "Please fill in all neccessary information." );
		form.f_name.focus();
		return false ;
		}
	else if (document.contact.l_name.value == "") {
		alert( "Please fill in all neccessary information." );
		form.l_name.focus();
		return false ;
		}

	else if (document.contact.email.value == "") {
		alert( "Please fill in all neccessary information." );
		form.email.focus();
		return false ;
		}
	else if (document.contact.comments.value == "") {
		alert( "Please fill in all neccessary information." );
		form.comments.focus();
		return false ;
		}
		
	// ** END **
else{
	return true ;
}
}