// this function colors the tr on "mouse-over" !!!
function mover(src)
      {
	  src.cursor='hand';
	  src.background='http://www.cupotico.com/images/menuBK.gif';
	  }
	  
function mout(src)
      {
	  src.cursor='';
	  src.background='';
	  }
	  
function openHtml(path) {
this.location=path;
 return;
 
}

function hideLayer(layername)
    {

        document.all[layername].style.visibility = 'hidden';
    }




