// 共用 Javascript

function GoTo(el){
	location.href=el;
}

function checkmail(myEmail) {
       if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(myEmail.value)){
          return (true)
       }
       return (false)
}
