// 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=600, height=400");
seite.moveTo(50,75);
seite.focus();}


// Fenster auf quer2

function quer2(furl)
{seite=window.open(furl,"fenster","location=0, menubar=0, resizable=0, scrollbars=0, status=0, toolbar=0, width=600, 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=400, height=600");
seite.moveTo(25,25);
seite.focus();}


// Fenster auf decke

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