// JavaScript Document
function photo(imgname,caption)
{
	myWindow = window.open("","zoomimg", 'width=1,height=1,top=0,left=0,toolbar=no,scrollbars=no,status=yes')
	myWindow.document.write("<html><head><link href='css/curlylox.css' rel='stylesheet' type='text/css'><title>curlylox - Enlarge Image</title></head>")
	myWindow.document.write("<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 bgcolor=#FFFFFF onload='window.resizeTo(img.width+8,img.height+85);'>")
	myWindow.document.write("<table border='0' cellpadding='0' cellspacing='0'><tr><td></td></tr>")
	myWindow.document.write("<tr><td><img  src='images/inner/"+imgname+".jpg' id='img'></td></tr>")
	myWindow.document.write("<tr><td height=2></td></tr><tr><td height=25px align='center' valign='middle' class='prd_title' bgcolor='#F0F0F0'><strong>"+caption+"</strong></td></tr></table>")
	myWindow.document.write("</body></html>")
	myWindow.document.close()
}