document.write('<meta http-equiv="Content-Type" content="text/html; charset=windows-1256">');

function chkCrFrm(){
	

	if(!checkTextField(document.getElementById("fname") ) ){
			alert("Kindly check the first name field");
			document.getElementById("fname").focus();
			return false;
		}
	if(!checkTextField(document.getElementById("lname") ) ){
			alert("Kindly check the last name field");
			document.getElementById("lname").focus();
			return false;
		}
	if(document.getElementById("country").value == 0){
		alert("Kindly check the country field");
		document.getElementById("country").focus();
		return false;
		}	
	if(!checkemail(document.getElementById("email") )){
		alert("Kindly check the email field");
		document.getElementById("email").focus();
		return false;
	}else { return true; }
	
	
	}
	
	function chkCommFrm(){
						if(!checkTextField(document.getElementById("usName") ) ){
							alert("الرجــاء التأكد من حقل الأسـم");
							document.getElementById("usName").focus();
							return false;
						}

						if(document.getElementById("count").value == 0 ){
							alert("الرجــاء التأكد من حقل البــلد");
							document.getElementById("count").focus();
							return false;
						}
						if(!checkTextField(document.getElementById("comDesc") ) ){
							alert("الرجــاء التأكد من حقل التعليق");
							document.getElementById("comDesc").focus();
							return false;
						}

			}