<!--
function validate_form() {
	if(!check_empty(document.mainForm.name.value)) {
    	alert('Please insert your Name.');  
    	document.mainForm.name.focus();  
	} else if(!check_email(document.mainForm.email.value)) {
		alert('Sorry! Please type in your Email address.');
    	document.mainForm.email.focus(); 
	} else if(!check_empty(document.mainForm.msg.value)) {
		alert('Sorry!  Please leave your message.');
    	document.mainForm.msg.focus();  	
    } else {
    	document.mainForm.submit();
        alert ("Thank You!!  Will get back to you soonest.");
    }
}

function check_empty(text) {
  return (text.length > 0); 
}

function check_email(address) {
  if ((address == "")
    || (address.indexOf ('@') == -1)
    || (address.indexOf ('.') == -1))
      return false;
  return true;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
