function reloadPage(r)
{
   if (r == "")
   {
      document.refres.testhide.value = "22";
   }else
   {
      document.location.reload(true);
   }
} 
function popUp(url, ht, wd)
{
   propStr = 'left=200,top=200,toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=' + wd + ',height=' + ht;
   popWin=window.open(url,"win",propStr);
   self.name = "mainWin";
   popWin.focus();
}
function printpopUp(url, ht, wd)
{
   propStr = 'left=200,top=200,toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=' + wd + ',height=' + ht;
   popWin=window.open(url,"win",propStr);
   self.name = "mainWin";
   popWin.focus();
}