function validate() {
	fields = document.getElementById("contactForm").elements;
	for ( i=0; i < fields.length; i++) {
		//alert(fields[i].value);
		if ( fields[i].value == '' ) {
			alert("You cannot leave any fields blank.");
			return false;
		}
	}	
	return true;
}