var loaded = 0;

function indexLoad() {

if (document.images != null) {

clickme1 = new Image();
clickme1.src = "/images/menu/index/01-top.gif";
clickme2 = new Image();
clickme2.src = "/images/menu/index/01-top-over.gif";

}
	loaded = 1;
}

function hiLite(imgDocID,imgObjName) {
if (document.images !=null) {
  if (loaded)
   document.images[imgDocID].src = eval(imgObjName + ".src")
  }
}

function popup(winName,URL,height,width) {
 var popup = window.open(URL,winName,"height=" + height + ",width=" + width + ",left=28,top=25,status=0,scrollbars=0,toolbar=0,directories=0,menubar=0,location=0");
 NewWindow = popup;
 NewWindow.focus();
}

function mouseOver(src,colorOver)	{
if (!src.contains(event.fromElement))	{
	src.style.cursor = 'hand'; src.bgColor = colorOver;
	}
}
function mouseOut(src,colorIn)	{
if (!src.contains(event.toElement))	{
	src.style.cursor = 'default';
	src.bgColor = colorIn;
	}
}
function mouseClk(src)	{
if(event.srcElement.tagName=='TD')	{
	src.children.tags('A')[0].click();
	}
}