
<!--

//Zeigt Swisstopo Wanderkarten
function titelhike(which)
{
var detail;
 detail=window.open("", "titel","width=450,height=341,resizable=Yes,status=Yes");
 detail.document.write ("<html><title>swisstopo: Wanderkarte - Carte d'excursions - Hiking Map 1:50 000</title>");
 detail.document.write ("<body onblur='window.close()' leftmargin='0' topmargin='0' marginheight='0' marginwidth='0'>");
 detail.document.write ("<img src=http://www.swisstopo.ch/static/images/products/analog/maps/fk/hike/maptit/"+which+".gif><br>");
 detail.document.write ("<img src=http://www.swisstopo.ch/static/images/products/analog/maps/fk/hike/mapview/"+which+".jpg>");
 detail.document.write ("</html></body>");
 detail.document.close(); 
}

//Zeigt Swisstopo Karten normal
function titel50(which)
{
var detail;
 detail=window.open("", "titel","width=500,height=397,resizable=Yes,status=Yes");
 detail.document.write ("<html><title>swisstopo: Landeskarte - Carte National - National Map 1:50 000</title>");
 detail.document.write ("<body onblur='window.close()' leftmargin='0' topmargin='0' marginheight='0' marginwidth='0'>");
 detail.document.write ("<img src=http://www.swisstopo.ch/static/images/products/analog/maps/50/maptit/"+which+".gif><br>");
 detail.document.write ("<img src=http://www.swisstopo.ch/static/images/products/analog/maps/50/mapview/"+which+".jpg>");
 detail.document.write ("</html></body>");
 detail.document.close(); 
}

//Zeigt Kartentitel Swisstopo Wanderkarten Zusammensetzung
function wktitel(which,imagewidth,imageheight)
{
 newWindow = window.open("","sys","width="+imagewidth+",height="+imageheight+",resizable=Yes,status=Yes"); 
 newWindow.document.write ("<html><title>swisstopo: Wanderkarte Zusammensetzung - Carte d'excursions assemblage - Hiking Map composite 1:50 000</title>");
 newWindow.document.write ("<body onblur='window.close()' leftmargin='0' topmargin='0' marginheight='0' marginwidth='0'>");
 newWindow.document.write ("<img src=http://www.swisstopo.ch/static/images/products/analog/maps/fk/hike/maptit/"+which+".gif><br>");
 newWindow.document.write ("<img src=http://www.swisstopo.ch/static/images/products/analog/maps/fk/hike/mapview/"+which+".jpg>");
 newWindow.document.write ("</html></body>");
 newWindow.document.close(); 
}

//Zeigt Kartentitel Swisstopo Zusammensetzungen normal
function maptitel(which,imagewidth,imageheight)
{
 newWindow = window.open("","maptitel","width="+imagewidth+",height="+imageheight+",resizable=Yes,status=Yes"); 
 newWindow.document.write ("<html><title>swisstopo: Landeskarte Zusammensetzung - Carte National assemblage - National Map composite 1:50 000</title>");
 newWindow.document.write ("<body onblur='window.close()' leftmargin='0' topmargin='0' marginheight='0' marginwidth='0'>");
 newWindow.document.write ("<img src=http://www.swisstopo.ch/static/images/products/analog/maps/50zus/maptit/"+which+".gif><br>");
 newWindow.document.write ("<img src=http://www.swisstopo.ch/static/images/products/analog/maps/50zus/mapview/"+which+".jpg>");
 newWindow.document.write ("</html></body>");
 newWindow.document.close(); 
}

//Zeigt Kartentitel BVV UKL50
function bvvtitel(which,imagewidth,imageheight)
{
var detail;
 window.open("http://www.geodaten.bayern.de/bvv_web/produkte/popup_tk/"+which+"","","width="+imagewidth+",height="+imageheight+",resizable=Yes,status=Yes");
}

//-->
