
	function tformcontrol1(theform, temp_space_notice)
    {
      if (theform.name == "admin_login_form")
	  {
        if ((theform.username.value == "") || (theform.password.value == ""))
        {
          alert(temp_space_notice);
          return false;
        }
        else
        {
          theform.submit();
        }
	  }
	  else
	  {
		  theform.submit();
	  }
    }


    function tformcontrol2(theform, temp_space_notice)
    {
        alert(theform.name);
    }


    function twinopen1(tempo_url, tempo_target, tempo_com)
    {
      window.open(tempo_url, tempo_target, tempo_com);
      return false;
    }
