function popup(url,name,features) 
{
  window.open(url,name,features);
}

function remove(session, id, page, bereich) {
	if (confirm(bereich +" wirklich entfernen?")) {
	  document.location.href = "scripts/"+ page +".php?PHPSESSID="+ session +"&del="+ id +""
	}
}

function remove2(session, id, uid, page, bereich) {
	if (confirm(bereich +" wirklich entfernen?")) {
	  document.location.href = "scripts/"+ page +".php?PHPSESSID="+ session +"&del="+ id +"&uid="+ uid +""
	}
}

function logout(session) {
	if (confirm("wirklich abmelden?")) {
	  document.location.href = "scripts/logout.php?PHPSESSID="+ session +""
	}
}

function neuesBild (img, titel) 
{
    document.getElementById("zoomimage").src = img;
	document.getElementById("zoomimage").title = titel;
    return;
}

function inner(head, text)
{
	document.getElementById("loft_headline").innerHTML = head;
	document.getElementById("loft_text").innerHTML = text;
}