// JavaScript Document

function CheckFields(){
	var filled;
	if (document.forms["formCatalog"]["Town"].value == ""){
		alert("You have not completed the form. Try pressing the Fill Out My Form button");
		filled = false;
	}else{
		filled = true;
	}
	if (filled){
		document.forms["formCatalog"].submit();
	}
	
}