// -----------------------------------------------------------------------------------------------------

  dom = (document.getElementById) ? 1 : 0;
  ie = (navigator.appName != "Netscape" && document.all) ? 1 : 0;
  opera = (navigator.appName == "Opera") ? 1 : 0;  

// -----------------------------------------------------------------------------------------------------

function imagePopup(imageUrl, imageW, imageH, _title)
{
x3 = imageW;
y3 = imageH;
x4 = (screen.width < 2000) ? (screen.width / 2 - (x3 / 2)) : (screen.width / 4 - (x3 / 2));
y4 = screen.height / 2 - (y3 / 2);
mywin = window.open('', 'big', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width=' + x3 + ',height=' + y3 + ',top=' + y4 + ',left=' + x4 + '');
mywin.document.open();

if(navigator.appName == "Microsoft Internet Explorer")
{
mywin.window.resizeTo(x3 + 10, y3 + 25);
}

mywin.document.write("<title>"+_title+"</title><body bgcolor=#ffffff leftmargin=0 topmargin=0 marginheight=0 marginwidth=0 onblur='window.close();'><a href='javascript:window.close()'><img src='" + imageUrl + "' border=0></a></body>");
mywin.document.close;
mywin.focus();

return false;
}
