function mOvr(src) {
  if (!src.contains(event.fromElement)) {
    src.style.cursor='hand'; 
	src.filters(0).opacity=100;
	//src.bgColor = clrOver;
	//s=src.children.tags('A')[0];
	//window.status='';
  }
}

function mOut(src)  {
  if (!src.contains(event.toElement)) {
    src.style.cursor='default'; 
	src.filters(0).opacity=50;
	//src.bgColor = clrIn; 
	window.status='';
  }
}

function mtOvr(src,clrOver){
  if (!src.contains(event.fromElement)) {
    src.style.cursor='hand'; 
	src.bgColor = clrOver; 
	s=src.children.tags('A')[0]; 
	window.status=s.href;
  }
}

function mtOut(src,clrIn) {
  if (!src.contains(event.toElement)) {
    src.style.cursor='default'; 
	src.bgColor = clrIn; 
	window.status='';
  }
}

function mtClk(src) {
  if(event.srcElement.tagName=='TD'){
    src.children.tags('A')[0].click();
  }
}

function hideshow(which)
{
if (!document.getElementById|document.all)
	{
	return
	}
else
	{
	if (document.getElementById)
		{
		oWhich = eval ("document.getElementById('" + which + "')")
		}
	else
		{
		oWhich = eval ("document.all." + which)
		}
	}

	window.focus()

	if (oWhich.style.display=="none")
		{
		oWhich.style.display=""
		}
	else
		{
		oWhich.style.display="none"
		}
}

