<!--
function checkData (){
 if (document.account.typecount.value == "prof") {
 document.account.action="prof/?go=login";
 document.account.submit();
 
}

 if (document.account.typecount.value == "user") {
 document.account.action="user/?go=login";
 document.account.submit();
 
}

 if (document.account.typecount.value == "") {
 alert("يجب تحديد نوع الحساب");                                         
 document.account.typecount.focus();
 return false;
}

}
// -->
