function FillSpacer()
{
	var content = window.document.getElementById("Content");
	var subNavigator = document.getElementById("SubNavigator");
	var spacer = document.getElementById("Spacer");

	var height = content.offsetHeight - subNavigator.offsetHeight;
	if (height > 0)
	{
		spacer.style.height = (content.offsetHeight - subNavigator.offsetHeight + 14) + "px";
	}
	else
	{
		content.style.height = subNavigator.offsetHeight - 2;
	}
}

function openFlyer(url)
{
	var options = "channelmode=0, directories=0, fullscreen=0, location=0, menubar=0, resizable=0, scrollbars=0, status=0, titlebar=0, toolbar=0";
	window.open(url, "_blank", options, false);
}
