	function adjustLayout()
	{
	  // Get natural heights
	  var cHeight = xHeight("content");
	  var lHeight = xHeight("left");
	  //var rHeight = xHeight("right");
	  
	  //alert("cHeight: " + cHeight);
	  //alert("lHeight: " + lHeight);

	  // Find the maximum height
	  var maxHeight =
		//Math.max(cHeight, Math.max(lHeight, rHeight));
		Math.max(cHeight, lHeight);

	  // Assign maximum height to all columns
	  // Aug 15, 2009, commented out, since IE 7 is not correctly calculating height
//	  xHeight("content", maxHeight);
//	  xHeight("left", maxHeight);
	  //xHeight("right", maxHeight);
	  
	  //alert("cHeight: " + cHeight);
	  //alert("lHeight: " + lHeight);

	  // Show the footer
	  xShow("footer");
	}

	window.onload = function()
	{
	  xAddEventListener(window, "resize",
		adjustLayout, false);
	  adjustLayout();
	}
	

function openVideoSWF_url(url)
{
    //var url = "http://test.savantage.net/vid_savantage_v1";
    var windowOpenValues = "width=700,height=600,scrollbars=yes,location=no,toolbar=yes,menubar=yes,resizable=yes";
    window.open(url, "video", windowOpenValues);
    return false;
}


