function openImage(url) 
{
bildSeite=window.open(url,"Details","scrollbars=1,toolbar=0,location=0,status=0,menubar=0,resizable=1,width=600,height=600");
/* Zweiter Parameter - "Details" - darf keine Leerzeichen enthalten */
bildSeite.focus();
}

function openPage(url) 
{
largeWin=window.open(url,"Page","scrollbars=1,toolbar=0,location=0,status=0,menubar=0,resizable=1,width=900,height=800");
largeWin.focus();
}

function openPageVar(url, w, h) 
{
displaystring = "scrollbars=1,toolbar=0,location=0,status=0,menubar=0,resizable=1,width=" + w + ",height=" + h ;
/* displaystring = "scrollbars=1,toolbar=0,location=0,status=0,menubar=0,resizable=1,width=" + "700" + ",height=" + "450" ; */
largeWin=window.open(url,"Page", displaystring);
largeWin.focus();
}

