﻿// JScript File
function PopUpWindow (url, hWind, nWidth, nHeight, nScroll, nResize) {
	if (nWidth > screen.width) {
		nWidth = screen.width;
	}
	if (nHeight > screen.height) {
		nHeight = screen.height;
	}
	var cToolBar = 'toolbar=0,location=0,directories=0,status=' + nResize + ',menubar=0,scrollbars=' + nScroll + ',resizable=' + nResize + ',width=' + nWidth + ',height=' + nHeight;
	var popupwin = window.open(url, hWind, cToolBar);
	return popupwin;
}

function ShowPopup(sURL) {
  window.open(sURL, null, "width=500px; height=450px; center=yes;");
}