function validate()
{
if(form1.name.value == "")
{
form1.name.focus();
return false;
}
return true;
}
