// JavaScript Document

function fenster(adresse, breite, hoehe)
{
	window.open(adresse,'URL',"scrollbars=no,toolbar=no,menubar=no,location=no,width=" + breite + ",height=" + hoehe + "");
}

function fenster_scrollbar(adresse, breite, hoehe)
{
	window.open(adresse,'URL',"scrollbars=yes,toolbar=no,menubar=yes,location=no,width=" + breite + ",height=" + hoehe + "");
}