    /*
	  restore textbox
	*/
<!--    
  if(window.attachEvent)
  {    
    window.attachEvent("onload",SetTextFieldColor);    
  }
  //SetTextFieldColor();
  
  function SetTextFieldColor()
  {
  // document.write("Entering SetTextFieldColor()");
    inputList = document.getElementsByTagName("INPUT");     
    for(i=0;i<inputList.length;i++)
    {   
      inputList[i].attachEvent("onpropertychange",restoreStylesWhite);
      inputList[i].style.backgroundColor = ""; 
    }
  }
  function restoreStylesWhite()
  {
    if(event.srcElement.style.backgroundColor != "" && 
      event.srcElement.style.backgroundColor != "#FFFFFF" &&
      event.srcElement.id.indexOf("tbZip2") > 0 )
    {
      event.srcElement.style.backgroundColor = "#666666"; /* color of choice for AutoFill */ 
    }   
    else
   {
      event.srcElement.style.backgroundColor = "#FFFFFF"; /* color of choice for AutoFill */ 
   }  
  }
    if(window.attachEvent)
  {
    window.attachEvent("onload",SetDropdownColor);
  }  
  function SetDropdownColor()
  {
    selectList = document.getElementsByTagName("SELECT");
    for(i=0;i<selectList.length;i++)
    {
      selectList[i].attachEvent("onpropertychange",restoreStyles);
      selectList[i].style.backgroundColor = "";
    }
  }
  function restoreStyles()
  {
    if(event.srcElement.style.backgroundColor != "" && event.srcElement.style.backgroundColor != "#666666")
    {
      event.srcElement.style.backgroundColor = "#666666"; /* color of choice for AutoFill */
    }
  }
  -->