function mapdisplay() {
document.getElementById('karte').style.display = "block";
}

function maphide() {
document.getElementById('karte').style.display = "none";
}




function streckenkarte(url,hoehe) {

var winl = (screen.width - 485) / 2;
var wint = (screen.height - 546) / 2;
winprops = 'height='+hoehe+',width='+485+',top='+wint+',left='+winl+',scrollbars='+'no'+',resizable='+'0';

win = window.open(url,'diashow', winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }

// neues fenster zentriert
// Original:  Eric King (eric_andrew_king@hotmail.com)
// Web Site:  http://redrival.com/eak/
// This script and many more are available free online at
// The JavaScript Source!! http://javascript.internet.com

}



 
 
 
 