<!-- Begin

function field_validation(thisform) {

       	if (thisform.Company_Name.value == "") {
		alert ("Company name must be filled in and can not be left blank...");
		thisform.Company_Name.focus();
		return false;
	}

/*	num = thisform.Company_Name.value;
	temp = Number(num);

	if (isNaN(temp))
       	{
		alert ("Pls Must Be Fill Only Numeric Value, Not Used Character Or special Character");
		thisform.Company_Name.focus();
		return(false);
	}
*/
		
	if (thisform.Admin_Name.value == "") {
		alert ("Name must be filled and can not be left blank ...");
		thisform.Admin_Name.focus();
		return false;
	}

	if (thisform.Admin_User_Name.value == "" || thisform.Admin_User_Name.value.length < 4 ) {
		alert ("User name must be filled with minimum 4 characters and can not be left blank ...");
		thisform.Admin_User_Name.focus();
		return false;
	}	

	s = new String(thisform.Admin_User_Name.value);

	if (s.indexOf(" ") != -1) {
		alert ("User name must not contain any spaces ...");
		thisform.Admin_User_Name.focus();
		return false;
	}	
	
	if (thisform.Admin_Password.value == "" || thisform.Admin_Password.value.length < 4 ) {
		alert ("Password must be filled with minimum 4 characters and can not be left blank ...");
		thisform.Admin_Password.focus();
		return false;
	}

	s = new String(thisform.Admin_Password.value);

	if (s.indexOf(" ") != -1) {
		alert ("Password must not contain any spaces ...");
		thisform.Admin_Password.focus();
		return false;
	}	
	


	if (thisform.Admin_Email.value == "") {
		alert ("Email must be filled and can not be left blank ...");
		thisform.Admin_Email.focus();
		return false;
	}

	
	
return true;
}