<!--
		var x;
		var y;
		var scroll;
		var breite;
		var hoehe;

function FensterGr(URL,Name) 
{ //v2.0
		if (screen.width <= 800) {
			x=0;
			y=0;
			breite=500;
			hoehe=500;
			scroll="no";
			}
		else {
			x=100;
			y=20;
			breite=500;
			hoehe=500;
			scroll="no";
			}
eigen = "toolbar=no,location=no,directories=no,status=no,scrollbars="+scroll+",copyhistory=no,titlebar=no,resizabel=no,top="+x+",left="+y+",width="+breite+",height="+hoehe;
newWindow = window.open(URL,Name,eigen);
newWindow.focus();
}

function FensterKl(URL,Name) 
{
eigen = "toolbar=no,location=no,directories=no,status=no,scrollbars=no,copyhistory=no,titlebar=no,resizabel=no,width=500,height=500";
newWindow = window.open(URL,Name,eigen);
newWindow.focus();
}	

//-->
