
  if(window.attachEvent)
    window.attachEvent("onload",setListeners);

  function setListeners(){
    inputList = document.getElementsByTagName("INPUT");
    for(i=0;i<inputList.length;i++){
      inputList[i].attachEvent("onpropertychange",restoreStyles);
      if ((inputList[i].name == "cName") || (inputList[i].name == "cMsg")) {
      	inputList[i].style.backgroundColor = "cccccc";
      }
      else {
      	inputList[i].style.backgroundColor = "cccccc";
      }
    }
    selectList = document.getElementsByTagName("SELECT");
    for(i=0;i<selectList.length;i++){
      selectList[i].attachEvent("onpropertychange",restoreStyles);
      selectList[i].style.backgroundColor = "cccccc";
    }
  }

  function restoreStyles(){
    if(event.srcElement.style.backgroundColor != "cccccc") {
    	if ((event.srcElement.name == "cName") || (inputList[i].name == "cMsg")) {event.srcElement.style.backgroundColor = "373737";}
      	else {event.srcElement.style.backgroundColor = "cccccc";}
    }
  }