//tmtC_cssOnBrowser
tmt_css_NN = "nnstyle.css";
tmt_css_IE = "style.css";
if(document.layers){
   document.write("<link rel='stylesheet' href='" + tmt_css_NN + "' type='text/css'>");
}
if(document.all){
   document.write("<link rel='stylesheet' href='" + tmt_css_IE + "' type='text/css'>");
}
else{
   document.write("<link rel='stylesheet' href='" + tmt_css_IE + "' type='text/css'>");
}//tmtC_cssOnBrowserEnd

function checkForm(form) {
	var na = form.Name;
	var tel = form.Telephone;
	var how = form.How;
	var naVal = na.value;  
	var telVal = tel.value; 
	var howVal = how.value;
	if (!naVal | !telVal | !howVal) {
		alert("Please fill in your Name, Telephone Number and How you found us");
		return false;
		}
	else {
		return true;
		}
	}

