
function extender(oc,id)
{
	myObj = document.getElementById("contentBox" + id);
	more = document.getElementById("moreLink" + id);
	if (oc == 'open') {
		myObj.className = 'visBox';
		more.style.display = "none";
	}
	if (oc == 'close') {
		myObj.className = 'hiddenBox';
		more.style.display = "inline";
	}
}

function popFeratel()
{
	var url = "http://livecam.feratel.at/cam/prien/3070/index.jsp?bgColor1=FFFFFF&bgColor2=7ACDF8%20&textColor1=000000&textColor2=FFFFFF&language=de&design=standard4";
	var opt = "width=550,height=480";
	w = window.open(url, "camwin", opt);
	w.focus();
}
