/*
Javascript functions library
http://centralgarage.com.ua
*/

var imagePath = "/public/image/";

function show_image(id, name){
  if (objImg = document.getElementById("preview_image")){
    src = imagePath + id + "/big/" + name;
    objImg.src = src;
    objImg.alt = name;
  }
  if (objLink = document.getElementById("preview_image_link")){
    href = imagePath + id + "/" + name;
    objLink.href = href;
  }
}

function show_full_image(id, name){
  href = imagePath + id + "/" + name;
  document.location = href;
}

/* collapse/expand */
function toggle(id){
  if ( objCol = document.getElementById(id) ){
    if (objCol.style.display == 'none'){
      objCol.style.display = 'block';
    }else{
      objCol.style.display = 'none';
    }
  }
}