// author: dasir

function img_preview(fn)
{
  showElement("preview_box");
  getElement("preview_img").src = fn;
}

/********************************************************/

function hide_preview()
{
  hideElement("preview_box");
}


