var imgWindow;
function showImage1(image,w,h) {
 var win_w = w - 0 ;
 var win_h = h - 0;
 if (imgWindow) {
  imgWindow.close();
 }
 if (!imgWindow || imgWindow.closed) {
  imgWindow = window.open('', 'imgWindow','toolbar=no,menubar=no,status=no,height=' + win_h + ', width=' + win_w);
  if (imgWindow.opener == null) {
   imgWindow.opener = self;
  }
  if(image.substring(0, 3) == 'sm_'){
   image = image.substring(3, image.length);
  }
  imgWindow.document.write('<html><head><title>Image</title><meta http-equiv=\'imagetoolbar\' content=\'no\'></head><body style=\'margin : 0;\' oncontextmenu=\'return false\'><img src=\'http://www.noel.ozstores.com/images/'+ image +'\'  width=\''+ w +'\' height=\''+ h +'\'>');
  imgWindow.document.close();
 }
}


