// Login Form JavaScript Document

/**
 *   submits the login form
 *
 *   @returns none 
 */  
function submitLogin(){

     //alert('here');
     
     xform = document.getElementById('login-form');    
     xform.submit();
     
}