function showHideDiv(parameters)
{
	divs = parameters.split(";");
	for (i = 0; i < divs.length; i++)
		if (divs[i].split(",")[1] == 1)
			document.getElementById(divs[i].split(",")[0]).style.display = "inline";
		else
			document.getElementById(divs[i].split(",")[0]).style.display = "none";
}

function showdiv(div, bool)
{
	if (bool == true)
		document.getElementById(div).style.display = "inline";
	else
		document.getElementById(div).style.display = "none";
}

function neuesFenster(theURL,winName,features) 
{
	window.open(theURL,winName,features);
}