//Verify Pages
function verifycalc() {
var txt = "";
	
	if (document.frmcalc.First_Name.value=="") {
	 txt = txt + "\n * Name";
	}
	if (document.frmcalc.Surname.value=="") {
	 txt = txt + "\n * Surname";
	}
	if (document.frmcalc.Mobile_Phone.value=="") {
	 txt = txt + "\n * Mobile";
	}
	
	
	if (document.frmcalc.Address1.value=="") {
	 txt = txt + "\n * Address";
	}
	if (document.frmcalc.City.value=="") {
	 txt = txt + "\n * City";
	}
	if (!document.frmcalc.Terms.checked) {
		txt = txt + "\n * Accept Terms & Conditions";
	}
	
	if (txt) {
		alert ("The folowing fields are required:\n" + txt);
		return false;
	}	
}