/* js file for trackbuster */
function gimmeRealContent(theURL) {
	document.location.href = theURL;
}


function change2Pwd(inputField) {
    
    if(inputField.type != "password")   {
      try {
          inputField.type = "password";
          inputField.value = "";
      }
      catch(e)  {
      
          var parentNode = inputField.parentNode; 
          parentNode.innerHTML = 
              "<input type=\"password\" name=\"password\" maxlength=\"12\"" +  
              " class=\"login\" style=\"width: 110px;\" />";
        
          document.forms["login"].elements["password"].focus();
          document.forms["login"].elements["password"].focus();
      }    
    }
}