var theme = "tmp";
var winPop;
function launchWin(loc, nme, winx, winy, params){
	winPop = window.open(loc, nme, 'width='+ winx +',height='+ winy +','+ params);
	if(moveTo)winPop.moveTo((screen.width - winx) / 2, (screen.height - winy) / 2);
	if(focus)window.setTimeout('winPop.focus()', 250);
}

function openTeilnahmebedingungen(){
	launchWin('teilnahme.html','teilnahme',500,450,'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=0');
}
function openInfos(){
	launchWin('infos.html','infos',400,300,'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=0');
}
