// JavaScript Document


function change_img(Bild, Wi, He) {
document.getElementById("art_bild").innerHTML = '<a href="#" onclick="openWindow(\'popup.php?img=images/' +Bild+ '\',\'\',\'width=' +Wi+ ', height=' +He+ '\'); return false;"><img src="images/thumbs/' +Bild+ '" alt="" border="0" /></a>';
}


function openWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
