

xpOpenWindowRef = false;

function xpOpenWindow(url, w, h, l, t) {

	prms  = 'width=' + (w | 820);
	prms += ',height=' + (h | 450);
	prms += ',left=' + (l | 0);
	prms += ',top=' + (t | 0);
	
	prms += ',toolbar=0';
	prms += ',location=0';
	prms += ',directories=0';
	prms += ',menuBar=0';
	prms += ',scrollbars=1';
	prms += ',resizable=1';
	
	xpOpenWindowRef = window.open(url, 'xpOpenWindowRef', prms);
	
	if (xpOpenWindowRef) {
		xpOpenWindowRef.focus();
	}
	
}

