function PopUpNoResize(sWindowName, sURL)
{
	var win = window.open(sURL, sWindowName, "resizable=no,toolbar=no,scrollbars=no,status=no,location=no,top=100,left=100,width=500,height=500");
	win.focus();
	return false;
}

function adjustLayout()
{
	//Get natural heights
	var lHeight = xHeight("left");
	var rHeight = xHeight("right");
	
	//Find the maximum height
	var maxHeight = Math.max(lHeight, rHeight);
	alert(maxHeight);
	
	if (maxHeight < 600)
	{
		maxHeight = 600;
	}
	
	xHeight("left", maxHeight);
	xHeight("right", maxHeight);
	
	//xTop("footer", maxHeight + 150);
		
	//Show the footer
	//xShow("footer");
}

//window.onload = function()
//{
//	xAddEventListener(window, "resize", adjustLayout, false);
//	adjustLayout();
//}