function show(bild)
{
 if(document.getElementById)
 document.getElementById("bild").style.visibility = "visible";
 document.getElementById("image").src =bild;
}

function hide()
{
 if(document.getElementById)
 document.getElementById("bild").style.visibility = "hidden";
}

