function launchWindow(frmPath, frmFile, frmWidth, frmHeight, frmTitle) {
	frmFile = "images/" + frmPath + "/Norm/" + frmFile + ".jpg"
	var win = launchCenter('about:blank', 'center', frmHeight, frmWidth);

	with (win) {
		  document.write('<HTML>');
	      document.write('<HEAD><TITLE>' + frmTitle + '</TITLE></HEAD>');
	      document.write('<BODY BGCOLOR=FFFFFF bottommargin="0" leftmargin="0" topmargin="0" rightmargin="0">');
		  document.write('<TABLE width="100%" height="100%" cellspacing="0" cellpadding="0" border="0"><tr><td align="center">');
	      document.write('<a href="javascript: self.close()"><IMG SRC="' + frmFile + '" BORDER=0></a>');
		  document.write('</TD></TR></TABLE>');
	      document.write('</BODY>');
	      document.write('</HTML>');
	}
}

function launchCenter(url, name, height, width) {
  var str = "height=" + height + ",innerHeight=" + height;
  str += ",width=" + width + ",innerWidth=" + width;
  if (window.screen) {
    var ah = screen.availHeight - 30;
    var aw = screen.availWidth - 10;
    var xc = (aw - width) / 2;
    var yc = (ah - height) / 2;
    str += ",left=" + xc + ",screenX=" + xc;
    str += ",top=" + yc + ",screenY=" + yc;
  }
  return window.open(url, name, str);
}
