function changeLoginOrRegisterLinks(){
   // needed so that changeLinks is still called when the image is loaded
   changeLinks();
   
   if (document.getElementById){
      if (document.getElementById('login_table_login')) {
         document.getElementById('login_table_login').setAttribute('href', 'javascript:login()');
      }
   }
}

window.onload=changeLoginOrRegisterLinks;
