	function seebig(n) {
	var img = n;
	w = window.open("", "w","left=0,top=0,width=480,height=640,toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes");
	writeit(img);
}

	function writeit(img){
	w.document.open();
	w.document.write('<html><head><title>');
	w.document.write('Click anywhere on the image to return to the Magazine.');
	w.document.write('</title></head><link rel=\"STYLESHEET\" type=\"text/css\" href=\"main.css\"><body bgcolor="0e0e0e">');
	w.document.write('<table align="center"><tr><td align="center">');
	w.document.write('<a href="javascript:window.opener.focus();"><img src="'+img+'.jpg"></a>');
	w.document.write('</td></tr></table>');
	w.document.write('</body></html>');
	w.document.close();
	w.focus();
}
