function showmenu(menuid){
   menuid.style.visibility = 'visible';
 }
 function delay(gap){ /* gap is in millisecs */
   var then,now; then=new Date().getTime();
   now=then;
   while((now-then)<gap){
     now=new Date().getTime();
   }
 }
 function hidemenu(menuid){
   menuid.style.visibility = 'hidden';
 }
 function newwin(imagecode, wid, hei){
   window.open("image_popup.php?imagecode="+imagecode+"&sitecode=","kingoldpop","menubar=0,toolbar=0,location=0,directories=0,status=0,copyhistory=0,width="+wid+",height="+hei);
 }
 function mOut(menuid){
 		menuid.style.fontWeight = 'normal';
 }
 function mOver(menuid){ 
			menuid.style.fontWeight = 'bold';
 }
function mClick(src){
  	if(event.srcElement.tagName=='TD'){
   		src.children.tags('A')[0].click()
   }
 }