function galerie(pfad)
{
var foto=window.open('','fenster','width=630,height=800,scrollbars=yes,resizeable=yes');
foto.document.write('<html><head><title>Foto-Galerie</title></head><body topmargin=\"0\" leftmargin=\"0\"><table border=\"0\" width=\"100%\" height=\"100%\"><tr><td width=\"100%\" height=\"100%\" valign=\"middle\" align=\"center\"><img src=\"'+pfad+'\"></td></tr></table></body></html>');
foto.moveTo(0,0);
foto.focus();
}

function normal(pfad)
{
var fenster;
fenster=window.open(pfad,'','scrollbars=yes,width=780,height=600');
fenster.moveTo(0,0);
fenster.focus();
}
