//Gallery js

function ShowPic(obj, id, imgname, path) { 
    var bigimage;
    bigimage = document.getElementById('picdisplayed' + id);
    bigimage.src = path + imgname;
    document.getElementById('url' + id).value = imgname; 
    obj.style.filter="none";
 }
 
function MakeGray(obj) {
  obj.style.filter ="BlendTrans(Percent=10) gray";
}

function ShowLargeImage(id, url)
{ 
  var img;
  img = document.getElementById('url' + id).value;
  window.open(url + img);

}


