// JavaScript Document

restoreStyles();

function restoreStyles(){
inputList = document.getElementsByTagName("INPUT");
for(i=0;i<inputList.length;i++){
inputList[i].style.backgroundColor = "";
if(inputList[i].id.indexOf('txtFN')>0 || inputList[i].id.indexOf('txtLN')>0) {
inputList[i].readOnly = true;
}
inputList[i].title = "";
}
selectList = document.getElementsByTagName("SELECT");
for(i=0;i<selectList.length;i++){
selectList[i].style.backgroundColor = "";
}
window.setTimeout(restoreStyles, 1);
}