<!-- // 
 var box;

 function openHelp(page, to, side)
 {
  if (box && box.open && !box.closed) 
  {
   box.focus();
  } 
  else
  {
   var url = "./admin/manual/" + page + ".html#" + to;
   if (side == "r")
     var left=(screen.availWidth/2)-425;
   else 
     var left=(screen.availWidth/2)-25;
     
    var top=(screen.availHeight/2)-300;
	box=window.open(url,'man','toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,copyhistory=0,dependent=0,width=450,height=420,screenX=' + left + ',screenY=' +top + ',top=' + top + ',left=' + left);
  }
}

// -->


