function bild(name,position) {
var a=document.createElement("a");
var a1=document.createAttribute("href");
var a2=document.createAttribute("onclick");
a1.nodeValue="fileadmin/images/anfahrt/"+name+"_gross.jpg";
a2.nodeValue="return popup(this,750,750);";
a.setAttributeNode(a1);
a.setAttributeNode(a2);
var img=document.createElement("img");
var a3=document.createAttribute("src");
a3.nodeValue="fileadmin/images/anfahrt/"+name+"_klein.jpg";
img.setAttributeNode(a3);
img.style.border="1px solid black";
a.appendChild(img);
var node=document.getElementById("karte");
node.replaceChild(a,node.firstChild);
if(position==1) {
document.getElementById("link1").style.textDecoration="underline";
document.getElementById("link2").style.textDecoration="none";
} else {
document.getElementById("link2").style.textDecoration="underline";
document.getElementById("link1").style.textDecoration="none";
}
return false;
}

