


function orig_showpanel(divid) {
//alert("here")	
obj=document.getElementById(divid)	
obj.style.visibility="visible"
}

/*
function showpanel_bak_130807(divid) {
//alert("here")	
divid && document.getElementById && (obj=document.getElementById(divid)) && (obj.style.visibility="visible");
}
*/

function showpanel() {
//alert("here")	/*nb: after setting style top & left - dom will remember last value set, so wil ignore orig css set value thereafter -ie. beware mixing both 1 and 3 arg forms of func on same page - one form or the other!
obj=null;
(arguments.length >= 1) && (obj=document.getElementById(arguments[0]));
(arguments.length==3) && (obj!=null) && ((obj.style.left=arguments[1]+"px"),(obj.style.top=arguments[2]+"px"));
(obj!=null) && (obj.style.visibility="visible");
}


function orig_hidepanel(divid) {
//alert("there")	
obj=document.getElementById(divid)	
obj.style.visibility="hidden"
}

function hidepanel(divid) {
//alert("there")	
divid && document.getElementById && (obj=document.getElementById(divid)) && (obj.style.visibility="hidden");
}

	
