
function user_enter(event)
{
   event || (event = window.event);
   
   var el = wp_event.get_target_element(event);
   if (el.name == 'login' || el.name == 'password') {
      if (event.keyCode == 13 || event.charCode == 13) {
         if (document.forms.loginform) {
            document.forms.loginform.submit();
         }
      }
   }
}

document.documentElement.onkeypress = user_enter;

function add2favorite() 
{  if (!window.sidebar) {
      window.external.addFavorite (location.protocol + '//' +  location.host, location.host);
   } else {
      window.sidebar.addPanel(location.protocol + '//' +  location.host, location.protocol + '//' +  location.host,"");
   }
   return false;
}


/** WESTPOWER CMS FUNCTIONS **/

function wps_outlink_log(outlink)
{
   var req = new JsHttpRequest();
   req.caching = false;
   req.open('POST', './module/wpsystem/wps_outlink.ajax.php', true);
   var param = {};
   param['outlink'] = outlink;
   param['pagelink'] = document.location.href;
   req.send(param);
   img = new Image();
   img.src = 'http://www.liveinternet.ru/click?*' + outlink;
}