
  function newWindow(htmlfile, X, Y) {
	var xy = ",width=" + X + ",height=" + Y;

    window.open(htmlfile, "newWindow","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes" + xy);
  }