var W = null;

function showimg(url, width, height, text) {
  if (!W || W.closed)  { 

    swidth = screen.width;
    sheight = screen.height;
    wwidth = width + 6;
    wheight = height + 6;

    var X = (swidth - wwidth) / 2;
    var Y = (sheight - wheight) / 2;

    properties = "toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width="+wwidth+",height="+wheight+",";
    checkie = navigator.appName.indexOf("icrosoft");
    if (checkie == -1) { properties = properties+"screenX="+X+",screenY="+Y;    }
                  else { properties = properties+"left="+X+",top="+Y;    }

    W = window.open('','MTEScreenShot',properties);

    W.document.open();

    W.document.write('<HTML><HEAD>');
    W.document.write('<TITLE>'+text+'</TITLE>');
    W.document.write('</HEAD>');
    W.document.write('<BODY MARGINWIDTH="0" MARGINHEIGHT="0" LEFTMARGIN="0" TOPMARGIN="0" BOTTOMMARGIN="0">');
    W.document.write('<A HREF="JavaScript:self.close()"><IMG SRC="'+url+'" HSPACE="0" VSPACE="0" BORDER="0"></A>');
    W.document.write('</BODY>');
    W.document.write('</HTML>');
    W.document.close()
    W.focus();  }  
    else  {    W.focus();
  }
}
