// JavaScript Document

function addEvent(){ 
	
}

function showForm(){
document.getElementById("popupInformation").className = 'popup-visible';
document.getElementById("alphadiv").className = "fdalpha";
}
function showForm2(){
document.getElementById("popupInformation2").className = 'popup-visible2';
document.getElementById("alphadiv").className = "fdalpha";
}
function closeForm(){
document.getElementById("popupInformation").className = 'popup-hidden';
document.getElementById("alphadiv").className = "popup-hidden";
}
function closeForm2(){
document.getElementById("popupInformation2").className = 'popup-hidden';
document.getElementById("alphadiv").className = "popup-hidden2";
}
function enter(){
 if(event.which || event.keyCode)
    {if ((event.which == 13) || (event.keyCode == 13)) {
      WSLogin();
      return false;
      }} 
     else {
     return true
   };
}
function enter2(){
 if(event.which || event.keyCode)
    {if ((event.which == 13) || (event.keyCode == 13)) {
      WSChangePwd();
      return false;
      }} 
     else {
     return true
   };
}
window.onload = addEvent;