<!--
function contactValidate(form){
if (form.your_name.value.length == 0) {alert("Please enter your name.");form.your_name.focus();return false}
if (form.phone.value.length == 0) {alert("Please enter your phone number.");form.phone.focus();return false}
if (form.email.value.length == 0) {alert("Please enter your email address.");form.email.focus();return false}
openWin();
return true;
}
function openWin(){
var newwin = window.open('about:blank', 'newwin', 'height=300,width=300');
window.location="index.html";
return true;
}
function blockError(){return true;}
window.onerror = blockError;
// -->
