function showCount(object) { object.visibility='visible'; }
function hideCount(object) { object.visibility='hidden'; }

function ClickEvent() {
 if (document.all(window.event.srcElement.id+"_vh").style.display=="none") 
    document.all(window.event.srcElement.id+"_vh").style.display=""; 
 else document.all(window.event.srcElement.id+"_vh").style.display="none"; 
}
function SelfHold() {
 document.all(window.event.srcElement.id).style.display=""; 
}


