<!-- Begin
function popUp(URL,xwidth,yheight,scrolling) {
if(scrolling==null) var scrolling=0; 
day = new Date(); 
id = day.getTime();

if((screen.width-50 < xwidth) || (screen.height-100 < yheight))
	{
		scrolling=1;
		xwidth=screen.width-50;
		yheight=screen.height-100;
	}
LeftPosition = (screen.width-xwidth)/2;
TopPosition  = (screen.height-yheight)/2;

eval("page" + id + " = window.open(URL, 'Orientierungssport', 'toolbar=0,scrollbars="+scrolling+",location=0,statusbar=0,menubar=0,resizable=0,width="+xwidth+",height="+yheight+",left = "+LeftPosition+",top = "+TopPosition+"');");
}

function popUpKarte(URL,xwidth,yheight,scrolling) {
if(scrolling==null) var scrolling=0; 
day = new Date(); 
id = day.getTime();

if((screen.width-50 < xwidth) || (screen.height-100 < yheight))
	{
		scrolling=1;
		xwidth=screen.width-50;
		yheight=screen.height-100;
	}
LeftPosition = (screen.width-xwidth)/2;
TopPosition  = (screen.height-yheight)/2;

eval("page" + id + " = window.open(URL, 'Karte', 'toolbar=0,scrollbars="+scrolling+",location=0,statusbar=0,menubar=0,resizable=1,width="+xwidth+",height="+yheight+",left = "+LeftPosition+",top = "+TopPosition+"');");
}

// End -->
