function openWin(url) {
   var newWidth = document.body.clientWidth - 100;
   var newHeight = document.body.clientHeight - 100;
   //newWin = open("",newLoc,"scrollbars=yes,resizable=yes,status=no,height=" + newHeight + ",width=" + newWidth);
   newWin = open(url,"_pr","scrollbars=yes,resizable=yes,status=yes,icons=yes,menubar=yes,toolbar=yes,height=" + newHeight + ",width=" + newWidth);
   newWin.resizeTo(newWidth, newHeight);
   newWin.focus();
   }
