<!--
// Open a javaScript window to view larger pics
var pic='';
var mess='';
var view='';
function open_win(pic,mess)
{
	if (view.location && !view.closed)
	{
		view.document.write('<HTML><HEAD><TITLE>'+mess+'</TITLE>');
		view.document.write('<LINK REL="Stylesheet" HREF="../theme/nocturne.css" TYPE="text/css">');
		view.document.write('<META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=iso-8859-1">');
		view.document.write('</HEAD><BODY ONLOAD="window.focus()"><CENTER><TABLE WIDTH="370" BORDER="0" CELLSPACING="0" CELLPADDING="0" HEIGHT="25" SUMMARY="Navigation"><TR CLASS="buttback"><TD CLASS="buttendl"><TD CLASS="button"><A HREF="javaScript:opener.focus()">Back to Main</A></TD><TD CLASS="button"><A HREF="javaScript:history.go(-1)">Back</A></TD><TD CLASS="button"><A HREF="javaScript:history.go(+1);">Forward</A></TD><TD CLASS="buttendr"></TR></TABLE>');
		view.document.write('<IMG SRC="../noct_img/'+pic+'" ALT="'+mess+'">');
		view.document.write('<BR><FONT SIZE="-1">'+mess+'</FONT>');
		view.document.write('</CENTER></BODY></HTML>');
		view.document.close();
	}
	else
	{
		view = window.open('','Picture','width=560,height=530,menubar=no,location=no,scrollbars=no,directories=no,status=no,toolbar=no,resizable=yes,copyhistory=yes,top=20,left=20',true);
		view.document.write();
		view.document.close();
		open_win(pic,mess);
	}
}
//-->
