function NewWinHELP(hurl,xsize,ysize){
     if (/(IE|Netscape6)/.test(navigator.appName)){
      newWin = window.open(hurl, 'WIN', 'scrollbars=1,resizable=0,toolbar=0,menubar=0,status=0,location=0,width='+xsize+',height='+ysize+',titlebar=0,left=180,top=100');
     }else{
      newWin = window.open(hurl, 'WIN', 'scrollbars=1,resizable=1,toolbar=0,menubar=0,status=0,location=0,width='+xsize+',height='+ysize+',left=180,top=100');
    }
    newWin.focus()
}  
