function mOvr(src,clrOver)
  { if (!src.contains(event.fromElement))
      { src.style.cursor = 'hand'; src.bgColor = clrOver;}}
function mOut(src,clrIn)
  { if (!src.contains(event.toElement))
      { src.style.cursor = 'default'; src.bgColor = clrIn; }}
function mClk(src)
  { if(event.srcElement.tagName=='TD') 
      { src.children.tags('A')[0].click(); }}
function showImg(name,w,h,title)
  { xp = 50; yp = 50;
    if ((parseInt(navigator.appVersion) >= 4 ) ) 
      { xp = (screen.width - w) / 2;
        yp = (screen.height - h) / 2; }
    doc=window.open('','','toolbars=no,menubar=no,scrollbars=no,width='+w+',height='+h+",screenx="+xp+",screeny="+yp+",left="+xp+",top="+yp);
    doc.document.write('<HTML><HEAD><TITLE>'+title+'</TITLE><meta http-equiv="Content-Type" content="text/html; charset=windows-1251"></HEAD><BODY leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><IMG src="image/'+name+'" alt="" border=0></BODY></HTML>');
  }