<!--
function ApplyXPOverStyle(obj,color,color2,addborder) {
         obj.style.backgroundColor = color;
         obj.style.borderColor = color2;
        if (addborder=='true') {obj.style.borderStyle='solid';obj.style.borderWidth='0px'}
}

function ApplyXPOutStyle(obj) {
        obj.style.backgroundColor = '';
        if (navigator.appName == 'Netscape') { obj.style.borderColor = '#000000'; } else {
        obj.style.borderColor = ''; }
        obj.style.borderStyle = '';
}
//-->