function imagePopup (url, width, height) {
ansicht = window.open(url,"ansicht","width=620,height=420");
ansicht.focus();
return true;
}

function showImage(id, source) {
 if(document.getElementById)
 {
   document.getElementById(id).src = source;
   document.getElementById(id).style.visibility = "visible";
 }
}

