function checkform(theform){
ĦĦif(theform.uname.value==""){
    alert("Sorry!name is none.");
	theform.uname.focus();
	return false;
  }
    if(theform.company.value==""){
    alert("Sorry!company is none.");
	theform.company.focus();
	return false;
  }

  }
