Вот общее решение:
function SetEingabeError(Ctl){
bgrnd = getBackGroundColor(Ctl);
Ctl.setAttribute("StdBackGround", bgrnd);
Ctl.style.background = "#FF6161";
}
function ResetEingabeError(Ctl){
bgrnd = Ctl.getAttribute("StdBackGround")
if (bgrnd) Ctl.style.background = bgrnd;
}
function getBackGroundColor(Ctl) {
if(window.getComputedStyle) {
Farbe= window.getComputedStyle(Ctl, "").getPropertyValue("background-color");
} else if(Ctl.currentStyle) {
Farbe= Ctl.currentStyle.backgroundColor;
} else if(document.ids) {
Farbe= document.layers[Ctl.id].bgColor;
}
return Farbe;
}