// JavaScript Document

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

	if (theform.name.value=="") { alert ('please enter correct information into all fields marked *'); theform.name.focus(); return false; }
	if (theform.lastname.value=="") { alert ('please enter correct information into all fields marked *'); theform.lastname.focus(); return false; }
	if (theform.phone1.value=="") { alert ('please enter correct information into all fields marked *'); theform.phone1.focus(); return false; }
	if (theform.birth.value=="") { alert ('please enter correct information into all fields marked *'); theform.d.focus(); return false; }
	return true;

}
