function Login(){
var done=0;
var username=document.login.username.value;
username=username.toLowerCase();
var password=document.login.password.value;
password=password.toLowerCase();
 if (username=="biztrip2009" && password=="love3j") { window.location="loginbiztrip2009_emailalert.htm"; done=1; }
  if (username=="mm" && password=="") { window.location="loginbiztrip2009_emailalert.htm"; done=1; } 
if (done==1) { alert("Welcome to 3J Jewelry's Newly Launched Products For Biz Trip 2009!"); }
if (done==1) { window.moveTo(0,0); }
if (done==1) { window.resizeTo(screen.width,screen.height); }
if (done==0) { alert("Invalid login!"); }
}