// JavaScript Document
function openWin(url) {
	win = window.open(url,"Fenster","width=790,height=450,left=0,top=0");
}

function openWinAndBack(url) {
	openWin(url);
	//history.go(-1);
}
function adventskalender()
{
	var url = '/adventskalender/index.php';
	var height = 585;
	var width = 780;
	muster1 = window.open(url ,"PopUp","width= "+ width +" ,height= "+ height +" ,left=200,top=220,scrollbars=no");
	muster1.focus();
	//location.href = "/index.html";
}

function checkBoxValidate(cb) {
	for (j = 0; j < 3; j++) 
	{
		if (eval("document.kontakt.katalogart[" + j + "].checked") == true) 
		{
			document.kontakt.katalogart[j].checked = false;
		
			if (j == cb) 
			{
			document.kontakt.katalogart[j].checked = true;
			}
		}
	}
}