function makeNewWin_(which){
  var winFeatures="";
  winFeatures+="status=no,"+
               "left=0,"+
               "top=0,"+  // Make the aweful one behave like the rest
               "location=no,"+
               "menubar=no,"+
               "status=no,"+
               "titlebar=no,"+
               "toolbars=no,"+
               "titlebar=no,width=342,"+
               "scrollbars=yes,resizable=yes";
  winFeatures+=",height="+(screen.availHeight-60);
  var url="searchResultFull.php";
  var winName="win_"+which.id;
  searchResWin_=window.open("",winName,winFeatures, true);
  searchResWin_.focus();
  searchResWin_.moveTo(0,0);
  var ourForm=document.getElementById("theForm");
  (document.getElementById("reportID")).value=which.id;
  ourForm.target=winName;
//alert(document.getElementById("srlzdClnSchTrms").value);
  ourForm.submit();
/*
*/
}

