   function NewWindow(myname, w, h, scroll) 
   {
   topage="http://www.parava.com/20Upd/WebExperto/index65.asp?affid=webexpertofabian&dname="+ document.searchform.dname.value
   var winl = (screen.width - w) / 2;
   var wint = (screen.height - h) / 2;
   winprops =
   "height="+h+",width="+w+",top="+wint+",left="+winl+
   ",scrollbars=" +scroll + ",resizable,status"
   win = window.open(topage, myname, winprops)
   if (parseInt(navigator.appVersion) >= 4) { 
       win.window.focus(); 
      }
   }


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();
    }
  }


