function openPopUp(breite, hoehe, kat, bild) {
		breite = breite + 50;
		hoehe = hoehe + 175;
		
		if (breite < 340)  {
			breite = 340;
		}
	
	   	var page = "fotos.php?breite="+ breite + "&hoehe="+ hoehe +"&kat="+ kat +"&bild="+ bild;
		
		fenster = window.open(page,'fenster','resizable=no, scrollbars=yes, width='+breite+', height='+hoehe)
	   	fenster.moveTo(((screen.availWidth-breite)/2),((screen.availHeight-hoehe-50)/2));
}

function img_act(imgName,PicName) {
	document[PicName].src = eval(imgName+".src")
}

function mo_subnav(id, klasse) {
	document.getElementById(id).className = klasse;
}

function showSubPage(page) {
	document.input.subpage.value=page;
	document.input.submit();
}

function showMainGroup(maingroup, subpage) {
	document.input.maingroup.value=maingroup;
	document.input.subpage.value=subpage;
	document.input.submit();
}

function changeLang(lang) {
	document.input.sprache.value=lang;
	document.input.submit();
}

function nextNewsPage() {
	var cur = document.input.pagenr.value;
	cur++;
	document.input.pagenr.value = cur;
	document.input.submit();
}

function lastNewsPage() {
	var cur = document.input.pagenr.value;
	cur--;
	document.input.pagenr.value = cur;
	document.input.submit();
}

function gotoNewsPage(nr) {
	document.input.pagenr.value = nr;
	document.input.submit();
}

function setCategory(cat) {
	document.input.category.value=cat;
	document.input.pagenr.value=0;
}