function openPostForm()
{
	window.open("about:blank", "postForm", "width=400,height=300,location=no,menubar=no,toolbar=no,status=no,scrollbars=yes,resizable=yes");
}

function fixLayout()
{
	var parent = document.getElementById('TwoCols');
	if ( parent == null || !parent.hasChildNodes() ) return;
	var children = parent.childNodes;
	var divIndex = 0;
	var divHeight = 0;
	var setClientHeight = (document.all != null && navigator.userAgent.toLowerCase().indexOf('opera') == -1);
	for ( var i = 0; i < children.length; i++ )
	{
		var node = children[i];
		if ( node && node.tagName == 'DIV' )
		{
			if ( (divIndex++ % 2) == 0 )
			{
				node.style.clear = 'left';
				if (setClientHeight) divHeight = node.clientHeight;
			}
			else
			{
				if (setClientHeight && node.style.height < divHeight)
				{ 
					node.style.height = divHeight + 'px';
				}
			}
		}
	}
}
