<!--



function f1(){






var w=moha.fname.value;
var y=moha.lname.value;


if(y==""){

window.alert("Please enter your last name");

return false;

}
for(var i=0;i<y.length;i++){
if(y.charCodeAt(i)!=32){

 if(y.charCodeAt(i)>122||y.charCodeAt(i)<65){


window.alert("the character that you entered in the last name field not arrange of A-Z,a-z ");
return false;}
}
}



if(w==""){

window.alert("Please enter your fisrt name");

return false;

}
for(var i=0;i<w.length;i++){
if(w.charCodeAt(i)!=32){

 if(w.charCodeAt(i)>122||w.charCodeAt(i)<65){


window.alert("the character that you entered in the first name field not arrange of A-Z,a-z ");
return false;}
}
}



return true;







}

//-->







