if (document.getElementById("uruntablosu")) {
  urunresim = document.getElementById("uruntablosu").getElementsByTagName("IMG");
  for(i=0;i<urunresim.length;i++) {
    urunresim[i].style.cursor = "pointer";
    urunresim[i].alt = "Büyük halini görmek için tıklayın.";
    urunresim[i].onclick = function(){
       urnpop = window.open(this.src.split(".png")[0]+"_ori.jpg", "", "width=600, height=500, menubar=no, scrollbars=yes, statusbar=no");
    }
  }
}