/**
 * Image Previewer
 * Author: Michael Lee
 * Copyright 2007 ORAIKO, All Rights Reserved.
 */
var Previewer = new function()
{
   var imgViewer = typeof document.getElementById != "undefined"
                 ? document.getElementById("imgViewer")
                 : document.images["imgViewer"];
   
   this.showImage = function(imagePath)
   {
      if(!imagePath) return;
      imgViewer.src = imagePath;
   };
};