/**
 * @author Mitonios.tuvinhsoft
 * @copyright 11/2009
 */

function popup_loginwrong(){
    alert("You have entered an unregistered email address or the wrong password, please try again.");
};
//function popup_blank(){
//    alert("You have left the email blank. Please try again.");
//};
function check_email(){
    if(trim($("#email").val())==''){
        alert("You have left the email blank. Please try again.");
        return false;
    }
    return true;
};
function popup_invalid(){
	alert("Invalid email. Please try again.");
};
function inputFocus(){
	$("#email").val(""); 		
}