/*Script für Wanderweg - Sichtbarkeiten steuern, Bilder laden*/

/*preload Images
_imgObj:Object images 
_imgSrc: Source */

function preloadImage(imgObj, imgSrc)
{
 if (document.images) {
 eval(imgObj+' = new Image()');
 eval(imgObj+'.src = "'+imgSrc+'"');
 }
 
}


/*Nav-Popup
öffen und schließen einer PopUp-Ebene*/

function showId (id){
document.getElementById(id).style.visibility='visible';
}
function hideId (id){
document.getElementById(id).style.visibility='hidden';
}
