var formTooltip = function()
{
  var tooltip = document.getElementById('theFormToolTip');
  var theInput = document.getElementById('password');
  

  if(tooltip && theInput && theInput.tagName == "INPUT")
  {
    var toolTipTitle = theInput.title;
    theInput.title = "";
    tooltip.display="none";
  


    theInput.onfocus = function()
    {
      tooltip.innerHTML = toolTipTitle;
      tooltip.style.display="block";
    }
    theInput.onkeydown = function()
    {
      tooltip.style.display="none";
    }
    theInput.onblur = function()
    {
      tooltip.style.display="none";
    } 
  } 
}

addEvent(window, 'load', formTooltip);

