function enlarge(picture, dir, caption) {
	var newWindow = window.open("","enlargeWindow","width=200, height=200, status=no, resizable=yes, scrollbars=no");
	newWindow.document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
    newWindow.document.writeln('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">');
	newWindow.document.writeln("<head>");
	newWindow.document.writeln("<meta http-equiv=\"imagetoolbar\" content=\"no\" />");
	newWindow.document.writeln("<title>Kingston Park Raceway</title>");
	newWindow.document.writeln('<style type="text/css">');
    newWindow.document.writeln('body		{width: 100%; height: 100%; margin:0px; padding: 0px; font: 10px Verdana, Arial, Helvetica, sans-serif; background: white; text-align: center;}');
    newWindow.document.writeln('div#bottom	{width: auto; height: 37px; padding: 16px 0px 0px 17px; background: white; text-align: left;}');
    newWindow.document.writeln('p			{margin: 5px 0px; padding: 0px; color: black;}');
    newWindow.document.writeln('p.title		{font: bold 12px Arial, Helvetica, sans-serif; color: red;}');
    newWindow.document.writeln('</style>');
	newWindow.document.writeln('<script type="text/javascript">');
	newWindow.document.writeln("function resizeToImg() {");
	newWindow.document.writeln("var mainPic = document.getElementById('mainPic');");
	newWindow.document.writeln("window.resizeTo(mainPic.width+12, mainPic.height+130);");
	newWindow.document.writeln("}");
	newWindow.document.writeln("</script>");
    newWindow.document.writeln("</head>");
	newWindow.document.writeln('<body onload="javascript: resizeToImg();">');
	newWindow.document.writeln('<div><img id="mainPic" src="'+dir+'/'+picture+'" alt="" /></div>');
	newWindow.document.writeln('<div id="bottom">');
	newWindow.document.writeln('<p>'+caption+'</p>');
	newWindow.document.writeln('<p>To download the image, do a right click over the image and select Save Picture As&hellip;</p>');
	newWindow.document.writeln('<p class="title">&copy;2006 Kingston Park Raceway. All Rights Reserved.</p>');
	newWindow.document.writeln('</div>');
	newWindow.document.writeln("</body>");
	newWindow.document.writeln("</html>");
	newWindow.document.close();
	newWindow.focus();
}
