<!--
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=75); WIDTH=150 BORDER=3 CELLPADDING=0 CELLSPACING=0 BGCOLOR=#000D5D><TR><TD align=center style='text-transform: uppercase; color: #FFFF00; font-family: Arial; font-style: italic; font-size: 12pt'><FONT COLOR=#FFC91C ><B>"+Title+"</B></FONT></TD></TR><TR><TD align=center bgcolor=#000000><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 = 130;
	if (NS4) skn.left = 133;
	if (IE4) {y=y+document.body.scrollTop;}
    skn.top  = y;
}

function hide() 
{
  skn.visibility = "hidden";
}

//-->
