 /* Version : 3,1,0,3 S */
  var Xoffset = -40; 
  var Yoffset = 20;  
  document.write('<div id="pup" style="visibility:hidden"><table id="puptable"></table></div>'); 
  mypopup = pup.style; 
  mypopup.width = 0; 
  mypopup.top = 0; 
  mypopup.left = 0;  
  
  function get_mouse(e) { 
  var x, y;  
  x = event.x + Xoffset; 
  y = event.y + Yoffset;  
  maxx = document.body.clientWidth  - puptable.clientWidth; 
  maxy = document.body.clientHeight - puptable.clientHeight;  
  if (x > maxx) x = maxx - 10; 
  else if (x < 1) x = 1;  
  if (y > maxy) y = y - (Yoffset * 3) - 10; 
  else if (y < 1) y = 1;  
  x = x + document.body.scrollLeft; 
  y = y + document.body.scrollTop;  
  mypopup.top  = y; 
  mypopup.left = x;  
  if (mypopup.visibility == "hidden") mypopup.visibility = "visible"; } 
  
  function popup(msg, bak, width, path) { 
  if (navigator.appVersion.indexOf("MSIE 4") != -1) return;  
  if (mypopup.visibility == "visible") return(true);  
  document.onmousemove=get_mouse; 
  mypopup.top = 0; 
  mypopup.left = 0; 
  popwidth = width;
 pup.innerHTML = '<table id="puptable" width="' + popwidth + '" style="border: 1 solid #C0C0C0" cellpadding=2 cellspacing=0 bgcolor="#FFFFCC"><td align="center" height="100%"><img src="' + path + 'images/help.gif">&nbsp;<font color="#000000">' + msg + '</font></td></table>'; }  
 function kill() { 
 if (navigator.appVersion.indexOf("MSIE 4") != -1) return;  
 document.onmousemove=''; 
 mypopup.visibility = "hidden"; } 