// JavaScript Document

// Fenster auf quer

function quer(furl)
{seite=window.open(furl,"fenster","location=0, menubar=0, resizable=0, scrollbars=0, status=0, toolbar=0, width=650, height=450");
seite.moveTo(50,75);
seite.focus();}



// Fenster auf hoch

function hoch(furl)
{seite=window.open(furl,"fenster","location=0, menubar=0, resizable=0, scrollbars=0, status=0, toolbar=0, width=450, height=650");
seite.moveTo(25,25);
seite.focus();}



