
function WindowOpen(psAddress, nLeft, nTop, nWidth, nHeight)
{
	sFeatures = "top=" + nTop + ",left=" + nLeft + ",width=" + nWidth + ",height=" + nHeight + ",scrollbars=yes,resizable=yes";
	hWnd = window.open(psAddress, "child", sFeatures);
};
