<!--//

var ns4 = document.layers;
var ns6 = document.getElementById && !document.all;
var ie4 = document.all;
offsetX = 0;
offsetY = 20;
var toolTipSTYLE="";
function initToolTips()
{
  if(ns4||ns6||ie4)
  {
    if(ns4) toolTipSTYLE = document.toolTipLayer;
    else if(ns6) toolTipSTYLE = document.getElementById("toolTipLayer").style;
    else if(ie4) toolTipSTYLE = document.all.toolTipLayer.style;
    if(ns4) document.captureEvents(Event.MOUSEMOVE);
    else
    {
      toolTipSTYLE.visibility = "visible";
      toolTipSTYLE.display = "none";
    }
    document.onmousemove = moveToMouseLoc;
  }
}
function toolTip(msg, fg, bg, txtcolor)
{
  if(toolTip.arguments.length < 1) // hide
  {
    if(ns4) toolTipSTYLE.visibility = "hidden";
    else toolTipSTYLE.display = "none";
  }
  else // show
  {
    if(!fg) fg = "#777777";
    if(!bg) bg = "#FFFFFF";
    if(!txtcolor) txtcolor = "#000000";
    var content =
    '<table border="0" cellspacing="0" cellpadding="1" bgcolor="' + fg + '"><td>' +
    '<table border="0" cellspacing="0" cellpadding="1" bgcolor="' + bg + 
    '"><td align="left"><span class="menu" style="color:' + txtcolor +
    '">' + msg +
    '&nbsp\;</span></td></table></td></table>';
    if(ns4)
    {
      toolTipSTYLE.document.write(content);
      toolTipSTYLE.document.close();
      toolTipSTYLE.visibility = "visible";
    }
    if(ns6)
    {
      document.getElementById("toolTipLayer").innerHTML = content;
      toolTipSTYLE.display='block'
    }
    if(ie4)
    {
      document.all("toolTipLayer").innerHTML=content;
      toolTipSTYLE.display='block'
    }
  }
}
function moveToMouseLoc(e)
{
  if(ns4||ns6)
  {
    x = e.pageX;
    y = e.pageY;
  }
  else
  {
    x = event.x + document.body.scrollLeft;
    y = event.y + document.body.scrollTop;
  }
  toolTipSTYLE.left = x + offsetX;
  toolTipSTYLE.top = y + offsetY;
  return true;
}

  function flip(rid)
  {
    current=(document.getElementById(rid).style.display == 'none') ? 'block' : 'none';
    document.getElementById(rid).style.display = current;
  }
  function clearDefault(ta)
  {
    if (ta.defaultValue==ta.value) ta.value = "";
  }
  function post_reply(post_id)
  {
    document.forms.commentform.comment_answer.value = post_id;
  }
  function page(numer) {
    document.getElementById('pageno').value = numer
    document.paginate.submit()
  }
  function confirmLink(theLink, confirmMsg)
  {
    var is_confirmed = confirm(confirmMsg);
    if (is_confirmed) {
        theLink.href += '';
    }
    return is_confirmed;
  }
  function judge(id,ret)
  {
    document.judgement.post_id.value = id;
    document.judgement.return_page.value = ret;
    document.judgement.submit();
  }
  function judgelist(id)
  { 
    window.open('http:');
    
  }
  function imsg(id)
  { 
    window.open('http:');
    
  }
  function imsg_catalog(op)
  { 
    window.open('http:');
    
  }

//-->

