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; }
	
	
	}
