  function load()
  {
      document.getElementById('meme_email').focus();
  }


  function checkForCR(e, frm) 
  {
      if (e.keyCode == 13) 
      {
          document.getElementById('loginOrRegister').value = frm;
          document.theForm.submit();
          return false;
      } else 
      {
          return true;
      }
  }

  function fp()
  {
      if (document.getElementById('forgot_password').checked)
      {
          document.getElementById('meme_password_login').disabled = true;
      }
      else
      {
          document.getElementById('meme_password_login').disabled = false;
      }
  }

      // for Internet Explorer

    /*@cc_on @*/
    /*@if (@_win32)
    	document.write("<script defer src=ie_onload.js><\/script>");
    /*@end @*/

    // for other browsers

    window.onload = init;

    function init() {
    	// quit if this function has already been called
    	if (arguments.callee.done) return;

    	// flag this function so we don't do the same thing twice
    	arguments.callee.done = true;

    	// do stuff
        load();
    };



