<!--
var NS4 = (document.layers) ? 1 : 0;
var IE4 = (document.all) ? 1 : 0;

var skn = (NS4) ? document.popdiv : popdiv.style;
if (NS4) document.captureEvents(Event.MOUSEMOVE);
document.onmousemove = get_mouse;

function Show(msg,Title) 
{

var content ="<TABLE style=FILTER:alpha(opacity=100); WIDTH=250 BORDER=0 CELLPADDING=5 CELLSPACING=0 ><TR><TD align=center BGCOLOR=#01156b><FONT FACE=VERDANA COLOR=#FFC91C SIZE=1><B>"+Title+"</B></FONT></TD></TR><TR><TD align=left bgcolor=#FF6600><FONT FACE=VERDANA COLOR=FFFF33 SIZE=1>"+msg+"</FONT></TD></TR></TABLE></TD></TR></TABLE>";

  if (NS4) 
  { 
      skn.document.write(content); 
	  skn.document.close();
	  skn.visibility = "visible";
  }
    else if (IE4) 
  {
	  document.all("popdiv").innerHTML = content;
	  skn.visibility = "visible";  
  }
}

function get_mouse(e) 
{
	if (NS4) {x=e.pageX; y=e.pageY;}
	if (IE4) {x=(event.clientX); y=(event.clientY);}
	skn.left = 435;
	if (NS4) skn.left = 435;
	if (IE4) {y=y+document.body.scrollTop;}
    skn.top  = y;
}

function hide() 
{
  skn.visibility = "hidden";
}

//-->
