function jsignup0Validate(frm) {

    if(frm.email.value=="" || frm.email.value.indexOf("@")==-1){
        alert("Email address seems wrong.");
        frm.email.focus();
        return false;
    }

    return true;
}

