<!--
var popup_ezpage = null;

function PopUpEZPageWindow(url, width, height)
{
	if (width == undefined) {
		width = 400;
	}
	if (height == undefined) {
		height = 450;
	}
	
	popup_ezpage = window.open(url, 'popup_ezpage_window', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=no, width=' + width + ',height=' + height + ', screenX=150, screenY=150, top=150, left=150');
	
	popup_ezpage.focus();
}
//-->