﻿// JScript 文件

function clearText(obj)
{
    var address=document.getElementById("SEARCH2").value;
    if(address=="enter email address")
    {
        obj.value='';
    }
}
function ChangeImg(obj,imgPath)
{
    obj.src=imgPath;
}
function EmailFormatCheck (obj) 
    {
        var strEmail=obj.value;
        var emailFormat=/^(.+)@(.+)$/;
        if( !emailFormat.test(strEmail) )
        {
            return false;
        }
        return true;
    }
function checkEmail(obj)
{   
//    var div_emailerror=document.getElementById('emailerror');
//    var emailInfo=document.getElementById('SEARCH2');
//    if(EmailFormatCheck(emailInfo))
//    {
//         window.location.href="/Join.aspx?email="+emailInfo.value;
//    }
//    else
//    {
//        div_emailerror.style.display='block';
//    }
    var emailInfo=document.getElementById('SEARCH2');
    window.location.href="/Join.aspx?email="+emailInfo.value;
}