<!--
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=90); WIDTH=200 BORDER=1 CELLPADDING=0 CELLSPACING=0 BGCOLOR=#0033cc><TR><TD align=center><FONT COLOR=#33ccff SIZE=2><B>"+Title+"</B></FONT></TD></TR><TR><TD align=center bgcolor=#0099ff><FONT 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 = 230;
	if (NS4) skn.left = 230;
	if (IE4) {y=y+document.body.scrollTop;}
    skn.top  = y;
}

function hide() 
{
  skn.visibility = "hidden";
}

//-->

