function alt_view(ImageName) {
	AltView = window.open('','AltView','width=348,height=400');
	AltView.focus()
	AltView.document.open();
	AltView.document.write('<html>');
	AltView.document.write('<head>');
	AltView.document.writeln('<script language="JavaScript">');
	AltView.document.writeln('<!--');
	AltView.document.write('function closeWin() {');
	AltView.document.write('  window.close();');
	AltView.document.writeln('}');
	AltView.document.write('if (window.Event) document.captureEvents(Event.ONCLICK);');
	AltView.document.writeln('document.onclick = closeWin;');
	AltView.document.writeln('// -->');
	AltView.document.writeln('</script>');
	AltView.document.writeln('<title>Swimtowin.com - Click to Close</title>');
	AltView.document.writeln('</head>');
	AltView.document.writeln('<body bgcolor=#FFFFFF>');
	AltView.document.write('<img src="images/' + ImageName + 'b.jpg"');
	AltView.document.writeln('</body>');
	AltView.document.write('</html>');
	AltView.document.close();
}