// Funktion zum oeffnen eines Neuen Fensters 
var newwin;
function openwindow(Datei)
{
this.window.name="main"; 
newwin=window.open( Datei , "Postcard" , "width=570,height=273");
if (this.window.focus) {newwin.focus();}
}
function openwindow(Datei,fram,x,y)
{
newwin=window.open( Datei , fram , "width="+x+",height="+y+"");
if (this.window.focus) {newwin.focus();}
}
