function artikel(id) {
	window.open('http://kulturkalender.faz.net/artikel.php?id='+id+'','artikel','scrollbars=yes,width=540,height=400')
}

function veranstaltung() {
	window.location.href='http://kulturkalender.faz.net/veranstaltungview.php?id='+arguments[0]+'&festival='+arguments[1]+'&result_set='+arguments[2] 
}

function autorenstimme(id) {
	window.open('http://kulturkalender.faz.net/autorenstimme.php?id='+id+'','autorenstimme','scrollbars=yes,width=620,height=500')
}

function autorenplayer(id) {
	window.open('http://kulturkalender.faz.net/autorenplayer.php?id='+id+'','player','width=180,height=40')
}


function checkAll(form) {
	for (i = 0; i < form.elements.length; i++)
	if (form.elements[i].type == 'checkbox')
	form.elements[i].checked = true ;
}

function uncheckAll(form) {
	for (i = 0; i < form.elements.length; i++)
	if (form.elements[i].type == 'checkbox')
	form.elements[i].checked = false ;
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}