if (document.getElementById){ 
document.write('<style type="text/css">\n')
document.write('.submenu{display: none;}\n')
document.write('</style>\n')
}
function SwitchMenu(obj)
{
	if(document.getElementById)
	{
	var el = document.getElementById(obj);
	var ar = document.getElementById("masterdiv").getElementsByTagName("span");
		if(el.style.display != "block")
		{ 
			for (var i=0; i<ar.length; i++)
			{
				if (ar[i].className=="submenu") 
				ar[i].style.display = "none";
			}
			el.style.display = "block";
		}
		else
		{
			el.style.display = "none";
		}
	}
}

function aktionSenden(bandwidth, plz) {

	var inputAktion = document.createElement("INPUT");
	inputAktion.type = "hidden";
	inputAktion.value = bandwidth;
	inputAktion.name = "bandwidth";
	inputAktion.id = "bandwidth";
	document.getElementById("hiddenForm").appendChild(inputAktion);

	var inputId = document.createElement("INPUT");
	inputId.type = "hidden";
	inputId.value = plz;
	inputId.name = "plz";
	inputId.id = "plz";
	document.getElementById("hiddenForm").appendChild(inputId);
	document.getElementById("hiddenForm").submit();
}

