if (window.opener && window.opener.newWindowWidth && window.opener.newWindowHeight && window.opener.newWindowX && window.opener.newWindowY)
{
		resizeTo(window.opener.newWindowWidth, window.opener.newWindowHeight);
		window.moveTo(window.opener.newWindowX, window.opener.newWindowY);
		window.focus();
}
// called in <body> onLoad to resize window to show content. Opener code can't guarantee that the status bar will NOT be shown.
// Height adjustment only
function ED_windowResize()
{
	bodyref = window.document.body;
	
	//FireFox and Safari (Not IE)
	if (window.innerHeight)
	{
		if (window.innerHeight < bodyref.scrollHeight)
		{
			resizeBy(0, bodyref.scrollHeight - window.innerHeight);
		}
	}
	// IE
	else if (bodyref.clientHeight < bodyref.scrollHeight)
	{
		resizeBy(0, bodyref.scrollHeight - bodyref.clientHeight);
	}
}