  function montre(id) {
	  if (document.getElementById) {
		  document.getElementById(id).style.display="block";
		} else if (document.all) {
		  document.all[id].style.display="block";
		} else if (document.layers) {
		  document.layers[id].display="block";
		} } 

 function cache(id) {
	  if (document.getElementById) {
		  document.getElementById(id).style.display="none";
		} else if (document.all) {
		  document.all[id].style.display="none";
		} else if (document.layers) {
		  document.layers[id].display="none";
		} }
		
var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height){
  	if(popUpWin)
  		{
    	if(!popUpWin.closed) popUpWin.close();
  		}
  	popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
	}

function map24_removeDefaultValues(){
			if (document.link2map24.s.value == 'Berlin Kochweg 10') 	document.link2map24.s.value 	= '';
		
	}
	
// Felder ein/ausblenden
function getElement( iElementId){
   if(document.all) return document.all[ iElementId];
   if(document.getElementById) return document.getElementById( iElementId);
}

// Toggle zum ein und ausblendne von elementen
function toggleElement( oElement) {
   if ( oElement.style.display == "none") {
      oElement.style.display = "";
   } else {
      oElement.style.display = "none";
   }
}
		

	

