function openImgWin(image,ext,width,height) {
var width,height
var image,ext
var cond1,cond2

if (width==0) cond1=" "
	else cond1="width="+(width+20)+"";
if (height==0) cond2=" "
	else {cond2="height="+(height+80)+"";
	}
var s1 ="<html><head><title>Stoneham Studios</title><style> *html{margin:0;}</style></head>"
var s15="<body style='background-color:#000;'>"
var s16="<p style='font:bold .8em Verdana, Arial, Helvetica, sans-serif;color:#fff;padding-left:.3em;'>"+ext+"</p>"
var s2 ="<center><img src='"+image+"' border=0>"
var s3 ="<br /><input style='margin-top:1em;' name='button' type='button' onclick='javascript:self.close();' value='Close Window' />"
var s4 ="</form></center></body></html>"

ImageWindow=window.open("", "newwin"+width,"toolbar=no,scrollbars="+scroll+",menubar=no,"+cond1+","+cond2);
ImageWindow.document.write(s1+s15+s16+s2+s3+s4)
ImageWindow.document.close()
}