function popImage(image, width, height)
{
	pop = window.open('', '', 'resizable=no,scrollbars=no,width=' + (Math.max(240, width + 20)) + ',height=' + (height + 60));
	pop.document.open();
	pop.document.write('<HTML>\n<HEAD>\n\t<TITLE>John McIntyre Racing NZ V8s</TITLE>\n\t<LINK REL="Stylesheet" HREF="main.css">\n</HEAD>\n');
	pop.document.write('<BODY BGCOLOR="white">\n<CENTER>\n\t<IMG SRC="'+image+'" WIDTH="'+width+'" HEIGHT="'+height+'" BORDER="1">\n');
	pop.document.write('\t<P><SMALL><A HREF="javascript:self.close();">click here to close this window</A></SMALL></P>\n</CENTER>\n</BODY>\n</HTML>');
	pop.document.close();
	return false;
}