// Die gesammelten JavaScript-Funktionen
// Scripted by Aysberg 

// Popup für Impressum
function impressum(){
posLeft = (screen.width-300)/2;
posTop = (screen.height-400)/2;
popup = window.open("","impressum","height=400,width=300,scrollbars=0,toolbar=0,location=0,directories=0,status=0,menubar=1,resizable=0,left="+posLeft+",top="+posTop+"");
popup.focus();
}

// Popup für Lageplan Übersicht
function lpfreising(){
posLeft = (screen.width-543)/2;
posTop = (screen.height-525)/2;
popup = window.open("","lpfreising","height=525,width=543,scrollbars=0,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,left="+posLeft+",top="+posTop+"");
popup.focus();
}

// Popup für Lageplan Detail
function lpweihst(){
posLeft = (screen.width-543)/2;
posTop = (screen.height-388)/2;
popup = window.open("","lpweihst","height=388,width=543,scrollbars=0,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,left="+posLeft+",top="+posTop+"");
popup.focus();
}

// Popup für historische Fotos
function historisch(){
posLeft = (screen.width-555)/2;
posTop = (screen.height-400)/2;
popup = window.open("","historisch","height=400,width=555,scrollbars=0,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,left="+posLeft+",top="+posTop+"");
popup.focus();
}