<!--
function showPhoto(imgPath, width, height, text) {
	var hasText = (text != null && text != '');
	var winWidth  = width + 30;
	var winHeight = height + (hasText ? 170 : 130);
	var popup = window.open('', 'photo', 'width=' + winWidth + ',height=' + winHeight);
	popup.resizeTo(winWidth, winHeight);
	popup.focus();
	var doc = popup.document;
	doc.open('text/html', 'replace');
	doc.writeln('<HTML>');
	doc.writeln('<HEAD>');
	doc.writeln('<TITLE>Rollin &amp; Tumblin</TITLE>');
	doc.writeln('<LINK REL="stylesheet" HREF="/css/r_t.css" TYPE="TEXT/CSS">');
	doc.writeln('</HEAD>');
	doc.writeln('<BODY BGCOLOR="#000000">');
	doc.writeln('<TABLE WIDTH="100%" BORDER="0" CELLPADDING="2" CELLSPACING="0">');
	doc.writeln('<TR VALIGN="TOP"><TD ALIGN="CENTER">');
	doc.writeln('<IMG SRC="' + imgPath + '" WIDTH="' + width + '" HEIGHT="' + height + '"></TD></TR>');
	if (hasText) {
		doc.writeln('<TR><TD CLASS="yellowText" ALIGN="CENTER"><B>' + text + '</B></TD></TR>');
	}
	doc.writeln('<TR VALIGN="TOP"><TD CLASS="yellowText" ALIGN="CENTER">&nbsp;<BR>');
	doc.writeln('<INPUT TYPE="BUTTON" NAME="btnClose" VALUE="Close Window" onClick="window.close();">');
	doc.writeln('<BR>&nbsp;</TD></TR></TABLE>');
	doc.writeln('</BODY>');
	doc.writeln('</HTML>');
	doc.close();
}
// -->

	

	