/**
 * Block the UI
 */
function blockFormCheck(errormsg){

		$.blockUI( { backgroundColor: '#191313', color: '#ffffff', height:'100px', padding:'20px' ,width:'300px'} );
		$.blockUI( '<table cellpadding="0" cellspacing="0" border="0" width="280"><tr><td><img src="/assets/images/4hp_load_logo_3_36.gif" /><\/td><td>'+errormsg+'<\/td><\/tr><\/table>' );
}







function checkemail(email){
	
	var emailFilter=/^([\w]+)(.[\w]+)*@([\w-.]+)(.[\w]+){1,2}$/;
	
	if(email == "" || email == "enter email address"){
			return false;
	}
	
	if (emailFilter.test(email) == false){
		return false
	}
	
	return true;
	
}


function notEmpty(field){
	
	if(field == ""){
			return false;
	}
}