// added here temporarily
function openWindow(lnk)  {
   open (lnk,"","height=500,width=650,scrollbars=yes,resizable=yes,status=no,menubar=no,toolbar=no,location=no")
 }

function openWindowFixed(lnk, h, w)  {
   var l = (screen.width-w)/2;
   var t = (screen.height-h)/2;
   open (lnk,"","height=" + h + ",width=" + w + ",left=" + l + ",top=" + t + ",scrollbars=no,resizable=no,status=no,menubar=no,toolbar=no,location=no")
 }
function openWindowSizable(lnk, h, w)  {
   open (lnk,"","height=" + h + ",width=" + w + ",scrollbars=yes,resizable=yes,status=no,menubar=yes,toolbar=yes,location=no")
 }