function ShowHideObject(Object){
    Object.style.display = (Object.style.display == "none") ? "" : "none"; 
}