function makewin(image,height,width) {
	var str = "height=" + height + ",innerHeight=" + height;
	str += ",width=" + width + ",innerWidth=" + width;
	var xc=400
	var yc=50
	str += ",left=" + xc + ",screenX=" + xc;
	str += ",top=" + yc + ",screenY=" + yc;
	newwin=window.open('','name','toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,' + str)
	newwin.document.open()
	newwin.document.write('<html><head><title>'+image+'</title></head><body leftmargin="0" topmargin="2" marginwidth="0" marginheight="2" onload="if (document.all||document.layers||document.getElementById) window.resizeTo(document.images[0].width + 30, document.images[0].height + 80)"><div align="center"><img src="www/'+image+'"><br><a href="javascript:window.close();"><font size="1" face="verdana,arial,sans_serif">Close Window</font></a></div></body></html>')
	newwin.document.close()
	newwin.focus()
}//function myDynamicPopup Copyright Ocean Breeze Web Design 2002 www.oceanbreezedesign.com.au