function infoWindow(theURL) {
  window.open(theURL,"info","toolbar=yes,menubar=yes,resizable=yes,status=yes,scrollbars=yes,width=650,height=550");
}

function inset(id)
{
	var i=0;
	var e=19; //Gestamtmenge
	if(id==999) { 
	  for(i;i<=e;i++) {
		document.getElementById("a"+i).style.display = "none"; 
		}
	  }
	else {
  	  if(document.getElementById("a"+id).style.display == "none")
	  {
	  for(i;i<=e;i++){document.getElementById("a"+i).style.display = "none";
					document.getElementById("a"+id).style.display = "";
					}
	  } 
	 else { document.getElementById("a"+id).style.display = "none";	
	 }
	}
}
function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}