
if (!document.getElementById)
    document.getElementById = function() { return null; }

function restoreFieldStyle(fieldID){
	
	if (document.getElementById) {
   		var myfieldid = document.getElementById(fieldID);
	}
	else if (document.all) {
	    var myfieldid = window.document.all[fieldID];
	}
		
	if (document.getElementById) {
		myfieldid.style.background = '#FFFFFF';
		myfieldid.style.color= '#333333';
	}
	else if (document.all) {
		myfieldid.style.background = '#FFFFFF';
	}     
	return false;
}