function Panorama(datei)
{
daten = datei
if(screen.width >= 1280)
MeinFenster = window.open('_fenster_pano.htm',"Zweitfenster", "scrollbars=yes,resizable=yes,width=1250,height=430,left=5,top=200")
else
if(screen.width >= 1024)
MeinFenster = window.open('_fenster_pano.htm',"Zweitfenster", "scrollbars=yes,resizable=yes,width=1000,height=430,left=5,top=170")
else
MeinFenster = window.open('_fenster_pano.htm',"Zweitfenster", "scrollbars=yes,resizable=yes,width=770,height=430,left=5,top=100")
MeinFenster.focus();
}
function PanoramaH(datei)
{
daten = datei
if(screen.height >= 960)
MeinFenster = window.open('_fenster_pano.htm',"Zweitfenster", "scrollbars=yes,resizable=yes,width=430,height=850,left=250,top=5")
else
if(screen.height >= 768)
MeinFenster = window.open('_fenster_pano.htm',"Zweitfenster", "scrollbars=yes,resizable=yes,width=430,height=650,left=200,top=5")
else
MeinFenster = window.open('_fenster_pano.htm',"Zweitfenster", "scrollbars=yes,resizable=yes,width=430,height=450,left=100,top=5")
MeinFenster.focus();
}
