//<!--

function m_over(obj, bg, fg)
{
  if(obj == null) obj= window;

  obj.event.srcElement.style.background = bg;
  obj.event.srcElement.style.fontweight = "bold";
  obj.event.srcElement.style.color = fg;
  obj.event.srcElement.style.cursor = "hand";
}

function m_out(obj, bg, fg)
{
  if(obj == null) obj= window;

  obj.event.srcElement.style.background = bg;
  obj.event.srcElement.style.fontweight = "normal";
  obj.event.srcElement.style.color = fg;
  obj.event.srcElement.style.cursor = "default";
}

function m_click(dest) 
{
	document.frames("main").navigate(dest);
}

function m_open(dest)
{
  window.open(dest);
}

function m_tclick(dest)
{
	document.location = dest;
}

//-->
