
// For portfolio of designer
function show_image(e, image)
{
  document.getElementById("image_div").style.display = "none";

  if (navigator.userAgent.match(/gecko/i)) { x = e.pageX }
  if (navigator.userAgent.match(/msie/i)) { x = window.event.x}
  document.getElementById("image_div").style.left = x + "px";

  eajaxRequest("/image.php", {image:image}, eval);
}
function close_image()
{
    document.getElementById("image_div").style.display = "none";
}
