function ShowStartPage(curPageID)
{
	if (inEditor)
		return;
	if (top == self) 
		window.location.href = "http://www.spherecast.at/ViewPage.asp?Site=SPHERECAST2&PageID=55&Params=PageID:" + curPageID;
	Resize();	
}	

function Resize()
{
	if (inEditor)
		return;
	var objTable = document.getElementById("_CMSTable1");
	if (objTable)
	{
		if (parent.document.all.ContentFrame)
		{
			parent.document.all.ContentFrame.style.height = objTable.clientHeight;
		}
	}
	if (parent.document.getElementById("IFrameTD"))
		parent.document.all.IFrameTD.style.visibility = "visible";
}

