// Opens full size image in new window
function imgWin(adrss, ttl, dscr, copyright) {
			newImgWin = window.open(adrss, "", "resizable, scrollbars");
			newImgWin.moveTo (0,0);
			newImgWin.resizeTo (screen.availWidth, screen.availHeight); 
			newImgWin.document.writeln	("<HTML>");
			newImgWin.document.writeln	("<HEAD>");
			newImgWin.document.write		("<TITLE>");
			newImgWin.document.write		(ttl);
			newImgWin.document.writeln	("<\/TITLE");
			newImgWin.document.writeln	("<meta http-equiv=content-type content=text/html;charset=windows-1251>");
			newImgWin.document.writeln	("<\/HEAD>");
			newImgWin.document.writeln	("<BODY bgcolor=RGB(236,232,203)>");
			newImgWin.document.writeln	("<br>");
			newImgWin.document.writeln	("<TABLE width=100% border=0>");
			newImgWin.document.writeln	("	<TR align=center>");
			newImgWin.document.write		("		<TD><IMG src=");
			newImgWin.document.write		(			adrss);
			newImgWin.document.writeln	(" 		border=1><\/IMG><\/TD>");
			newImgWin.document.writeln	("	<\/TR>");
			newImgWin.document.writeln	("	<TR align=center>");
			newImgWin.document.write		("		<TD><br><I>");
			newImgWin.document.write		(			dscr);
			newImgWin.document.writeln	("		<\/I><\/TD>");
			newImgWin.document.writeln	("	<\/TR>");
			newImgWin.document.writeln	("	<TR>");
			newImgWin.document.writeln	("		<TD>");

			newImgWin.document.writeln	("		<\/TD>");
			newImgWin.document.writeln	("	<\/TR>");
			newImgWin.document.writeln	("<\/TABLE>");
			newImgWin.document.writeln	("<\/BODY>");
			newImgWin.document.writeln	("<\/HTML>");
}
