function OpenNewWindow(obj, width, height)
{
      var target="_blank";
      var title="default popup title";
      if(obj.target) target=obj.target;
      if(obj.title) title=obj.title;
      var newWindow = window.open("", target, "location=no, directories=no, fullscreen=no, menubar=no, status=no, toolbar=no, width=" + width + ", height=" + height + ", scrollbars=no");
      newWindow.document.writeln('<html><head><title>'+title+'</title>');
      newWindow.document.writeln('<meta content="no" http-equiv="imagetoolbar" /></head>');
      newWindow.document.writeln('<body style="margin: 0 0 0 0;" onblur="self.close();">');
      newWindow.document.write('<a href="javascript:window.close();">');
      newWindow.document.write('<img src="' + obj.href + '" alt="Click to close" id="bigImage" style="border: 0;" />');
      newWindow.document.writeln('</a>');
      newWindow.document.writeln('</body></html>');
      newWindow.document.close();
      return false;
}