function openPhoto (theImage, width, height, caption) {	var theWidth = eval(width) + 10;	var theHeight = eval(height) + 10;	photoWindow = window.open("","Photo","width=710,height=400");		photoWindow.document.write("\<html\>\<title\>Just a teaser...\<\/title\>");	photoWindow.document.write("\<body bgcolor=\"#7FBFFF\" background=\"starback5.gif\" text=\"#000000\" topmargin\=\"0\" leftmargin\=\"0\" marginheight\=\"0\" marginwidth\=\"0\"\>");	photoWindow.document.write("\<table border=\"0\" width=\"100\%\" height=\"100\%\" align\=\"center\" valign=\"top\"\>");		photoWindow.document.write("\<tr\>\<td align\=\"left\" valign=\"middle\"\>\<img src\=\"" + theImage + "\" width\=\"" + width + "\" height\=\"" + height + "\"\>");	photoWindow.document.write("\<br clear\=\"all\"\>");	photoWindow.document.write("\<b><p style\=\"font-family: verdana, sans-serif; font-size: 13px;\"\>" + caption + "\<\/p\><\/b\/>");	photoWindow.document.write("\<\/td\>\<\/tr\>");	photoWindow.document.write("\<\/table\>")	photoWindow.document.write("\<\/body\>");	photoWindow.document.write("\<\/html\>");	photoWindow.document.close();}