function showFocus(obj){
if(!document.getElementById)
return;
obj.style.border = "1px solid red";
obj.style.backgroundImage = "url(../images/space.gif)";
}




function showBlur(obj){
if(!document.getElementById)
return;
obj.style.border = "1px solid #000";
obj.style.backgroundImage = "url(../images/logon_fade.png)";
}




function fixFlash()
{
theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects[i].outerHTML = theObjects[i].outerHTML;
}
} 
