function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}






wmtt = null;






Xoffset= 16; // modify these values to ...
Yoffset= 16; // change the popup position.

var old,skn,iex=(document.all),yyy=-1000;

var ns4=document.layers
var ns6=document.getElementById&&!document.all
var ie4=document.all

if (ns4)
skn=document.thumbblok
else if (ns6)
skn=document.getElementById("thumbblok").style
else if (ie4)
skn=document.all.thumbblok.style
if(ns4)document.captureEvents(Event.MOUSEMOVE);
else{
skn.visibility="visible"
skn.display="none"
}

document.onmousemove=get_mouse;

function popup(msg,bak){
var content="<TABLE WIDTH=80 style='border: #000000 solid 1px' bordercolor=#000000  CELLPADDING=0 CELLSPACING=0><TD ALIGN=center><FONT COLOR=black SIZE=2>"+msg+"</FONT></TD></TABLE>";
yyy=Yoffset;
if(ns4){wmtt = document.write(content); wmtt.document.close( ); wmtt.visibility="visible"}
if(ns6){wmtt = document.getElementById("thumbblok"); wmtt.innerHTML=content; wmtt.style.display='block'}
if(ie4){wmtt = document.all("thumbblok"); wmtt.innerHTML=content; wmtt.style.display='block'}
}

function get_mouse(e){
   x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
   y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;
   if (wmtt != null) {
      wmtt.style.left = (x + 10) + "px";
      wmtt.style.top    = (y + 10) + "px";
   }
}

function stopthumb(){
yyy=-1000;
if(ns4){skn.visibility="hidden";}
else if (ns6||ie4)
skn.display="none"
}
