// JavaScript Document
function openWindow(URL, winName, vWIDTH, vHEIGHT) {
	if (screen.availHeight < vHEIGHT) {
		vHEIGHT = (screen.availHeight) -80;
		vResize = "yes";
		vScroll = "yes";
	} else {
		vResize = "no";
		vScroll = "no";
	}
	windowProps = "left=0,top=0,toolbar=no,location=no,status=no,scrollbars=" + vScroll + ",resizable=" + vResize + ",WIDTH=" + (vWIDTH+50) + ",HEIGHT=" + (vHEIGHT+50);
	enlarged = window.open(URL, winName, windowProps);
}
function closeWindow() {
	if (enlarged && !(enlarged.closed)) {
		enlarged.close()
	}
}