function popup(imageName,imageWidth,imageHeight,alt,center) {  // v4.01		posLeft=0; posTop=0;	var posLeft = (screen.width - imageWidth) / 2;	    var posTop = 20;		newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+"");	newWindow.document.open();	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#000000" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onClick="self.close()" onBlur="self.close()">'); 	newWindow.document.write('<body style="margin:0 0 0 0;">');	newWindow.document.write('<div align="center"><img src=\"'+imageName+'\"  alt=\"'+alt+'\"></div>');	newWindow.document.write('</body></html>');	newWindow.document.close();	newWindow.moveTo(posLeft, posTop);	newWindow.focus();	}function newImage(arg) {	if (document.images) {		rslt = new Image();		rslt.src = arg;		return rslt;	}}
