<!--

function over(what)	{
	what.style.backgroundColor='#FFFFFF';
}

function out(what)	{
	what.style.backgroundColor='#D5D5D5';
}


function Go(whereto)	{
	if (whereto == "nolink")	{
  		return;
	}
	else	{
		window.location.href = whereto;
	}
}

function NewWindow(windowname,breite,hoehe) {
	var str = "width=" + breite + ",height=" + hoehe + ",toolbar=0,status=0,menubar=0,resizable=1,scrollbars=1,directories=0,top=10,left=10";
	//alert(str);
	p = window.open("",windowname,str);
	if (p.opener==null) p.opener=self;
}

function NewWindowNoScroll(inhalt,windowname,breite,hoehe) {
	var str = "width=" + breite + ",height=" + hoehe + ",toolbar=0,status=0,menubar=0,resizable=0,scrollbars=0,directories=0,top=10,left=10";
	//alert(str);
	p = window.open(inhalt,windowname,str);
	if (p.opener==null) p.opener=self;
}

function Popup(Ziel,breite,hoehe){
	MeinFenster = window.open(Ziel, "Fenster", "scrollbars=yes,resizable=yes,menubar=no,status=no,width=" + breite + ",height=" + hoehe + "");
	MeinFenster.focus();}
//-->
