// JavaScript Document
<!--
function popUp(URL, hasscrollbars, isresize, w, h) {
	var screenleft;
	var screentop;

	//center the location of the window
	screenleft = (screen.width / 2) - (w / 2);
	screentop = (screen.height / 2) - (h / 2);
	window.open(URL, "", 'toolbar=0,scrollbars=' + hasscrollbars + ',location=0,statusbar=1,menubar=0,resizable=' + isresize + ',width=' + w + ',height=' + h + ',left = ' + screenleft + ',top = ' + screentop);
}
//-->