function impressum()
{
var x = 0;
if(screen.width >= 620)
{
var x = (screen.width-620)/2;
if(x<0){x=0;}
}
else
{
var x = 0
}

var y = 0;
if(screen.height >= 520)
{
var y = (((screen.height-520)/2)-40);
}

popupwindow = window.open("../impressum/impressum.html", "anfahrt", "width=620,height=520,resizable=no,scrollbars=yes,toolbar=no,status=yes,directories=no,menubar=no,location=no");
popupwindow.moveTo(x,y);
popupwindow.focus();

}


function anfahrt()
{
var x = 0;
if(screen.width >= 620)
{
var x = (screen.width-620)/2;
if(x<0){x=0;}
}
else
{
var x = 0
}

var y = 0;
if(screen.height >= 520)
{
var y = (((screen.height-520)/2)-40);
}

popupwindow = window.open("../anfahrt/anfahrt_lupe.html", "anfahrt", "width=620,height=520,resizable=no,scrollbars=yes,toolbar=no,status=no,directories=no,menubar=no,location=no");
popupwindow.moveTo(x,y);
popupwindow.focus();

}