function over(c) 
{
  c.style.backgroundColor='#F0FAFF';
  c.style.cursor='default';
}

function out(c) 
{
  c.style.backgroundColor='#ffffff';
}

function _click(c)
{
 location.href=c;
}

function openlink(url, w, h)
    {
      mreplywin = window.open('','mreplywin64'+Math.round(1000*Math.random()),'width=' + (w+15) + ',height=' + (h+25) + ',scrollbars=0,status=0,resizeable=0');
      mreplywin.location.href = url;
      mreplywin.focus(); // bring our subwindow to the front
      if (mreplywin.opener == null) mreplywin.opener = window;
    }

