
  function newwindow(url,name,x,y,scrollbars,resize) {
	  nw=window.open(url,name,"width="+x+",height="+y+",resizable="+resize+",scrollbars="+scrollbars);
    nw.moveTo((screen.width-x)/2,(screen.height-y)/2);
    nw.focus();
  }
