function ShowStartPage(curPageID)
{
	if (inEditor)
		return;
	if (top == self && document.documentElement.MediaIndicator == undefined)
		window.location.href = "http://www.da-vienna.ac.at/ViewPage.asp?Site=DAVIENNA&PageID=84&Params=PageID:" + curPageID;
	Resize();
	window.scrollTo(1, 1);
}	

function Resize()
{
	//alert("Resize");
	if (inEditor)
		return;
	parent.window.scrollTo(1,1);
	var objTable = document.getElementById("_CMSTable1");
	if (objTable)
	{
		//alert(parent.document.all.ContentFrame);
		if (parent.document.all.ContentFrame)
			parent.document.all.ContentFrame.style.height = objTable.clientHeight + 30 + "px";
	}
	if (parent.document.getElementById("IFrameTD"))
		parent.document.all.IFrameTD.style.visibility = "visible";
}

function SetValueStore(id)
{
	var tmp = document.getElementById("ValueStore").value;
	
	if (document.getElementById(id))
	{
		tmp = tmp.replace(";" + id + ";", ";");
		if (document.getElementById(id).checked)
			tmp = tmp + ";" + id + ";";
		document.getElementById("ValueStore").value = tmp;
	}
}
