/*  Project Name		: cogswellgallery.com
   	Program name		: login.js
 	Program function	: js validation for member login
	Author				: David Bishop(Jaisenan T.C)
	Developed by	   	: Bishop web works- www.bishopwebworks.com 
 	Created Date  		: 26 JAN 08
 	
	Update History
    -------------------------------------------------------------------
    Date       	 By 				    	short desc. of what updated 
 	-------------------------------------------------------------------*/
	
	function validate_this(theform){
	      if(isEmpty(theform.frm_username.value)){
    	      alert("Please enter the email.");
		      theform.frm_username.focus();
	           return false;
	}
	if (emailCheck(theform.frm_username.value) == false){
			theform.frm_username.focus();
	  		return false;
		}
		if (passwordCheck(theform.frm_password.value) == false){
			theform.frm_password.focus();
	  		return false;
		}	
		return true;
	}
