function doChanges()
{
window.event.srcElement.style.color = "#ffffff";
window.event.srcElement.style.fontsize = "12px";
}
function undoChanges()
{
window.event.srcElement.style.color = "#ff9900";
window.event.srcElement.style.fontsize = "10px";
}

function showme(anElement){
        if (document.all) { 
        // tests for the existence of the 'all' collection 
        // currently a safe object-based detection scheme for IE4 DOM
                anElement.filters[0].Apply(); 
                anElement.style.visibility = ""
                anElement.filters[0].Play(); 
        }
}
