var g_newWindow;

function openWindow_write( p_strHTML, p_iWidth, p_iHeight ) {

	if(!p_iWidth)  p_iWidth		= 800;
	if(!p_iHeight) p_iHeight	= 550;

	if(!g_newWindow || g_newWindow.closed) {
//		g_newWindow				= window.open("", "g_newWindow", "status, scrollbars, resizable, width="+p_iWidth+", height="+p_iHeight+"");
		g_newWindow				= window.open("", "g_newWindow", "status, resizable, width="+p_iWidth+", height="+p_iHeight+"");
		if(!g_newWindow.opener) {
			g_newWindow.opener	  = window;
		}
	}

	g_newWindow.document.open();
	g_newWindow.document.write( p_strHTML );
	g_newWindow.document.close();
	g_newWindow.focus();
}

