<!--
function newWindow(url, name, width, height, toolbar, status, scrollbar, resizable, menubar, location) {
	 var posX=(screen.availWidth-width)/2;
     var posY=(screen.availHeight-height)/2;
  if(window.kp){
   if(window.kp.closed == true){
      kp = window.open(url,name,"width=" + width + ",height=" + height + ", toolbar=" + toolbar + ",status=" + status + ",scrollbars=" + scrollbar + ",resizable=" + resizable + ",menubar=" + menubar + ",location=" + location + "screenX=" + posX + ",screenY=" + posY + ",left=" + posX + ",top=" + posY + "");
      window.kp.focus();
      return false;
   }else{
   window.kp.close();
   kp = window.open(url,name,"width=" + width + ",height=" + height + ", toolbar=" + toolbar + ",status=" + status + ",scrollbars=" + scrollbar + ",resizable=" + resizable + ",menubar=" + menubar + ",location=" + location + "screenX=" + posX + ",screenY=" + posY + ",left=" + posX + ",top=" + posY + "");
   window.kp.focus();
   return false;
   }
  }else{
   kp = window.open(url,name,"width=" + width + ",height=" + height + ", toolbar=" + toolbar + ",status=" + status + ",scrollbars=" + scrollbar + ",resizable=" + resizable + ",menubar=" + menubar + ",location=" + location + "screenX=" + posX + ",screenY=" + posY + ",left=" + posX + ",top=" + posY + "");
   window.kp.focus();
   return false;
  }
}
//-->
