// JavaScript Document
function toggleswitch(id) {
	var d = document.getElementById(id);
	
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('div'+i)) {
			document.getElementById('div'+i).style.display='none';
		}
	}
	
	if (d) { 
		d.style.display='block';
	}
}

function openpopwin(url, title, mywidth, myheight) {
	center = (screen.width/2)-(mywidth/2);
	fenster = window.open(url, title, "width="+mywidth+",height="+myheight+",status=no,scrollbars=no,resizable=no,top=50,left="+center);
 	fenster.focus();
}