
function showPic(loc) {
	var title = "Tasmanian Aero Club";
	var stropt='toolbar=0,location=0,directories=0,status=no,menubar=0,scrollbars=no,resizable=0,width=600,height=580,left='+((screen.availWidth - 600)/2)+",top=8";
	var picture = window.open('','Gallery',stropt);
	picture.document.writeln('<html><head><title>Gallery</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><script language="JavaScript">\n<!--\n');	
	picture.document.writeln('function rc(evnt){if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null) {if (evnt.which>=1){window.close();}} else {if (event.button>=2){window.close();}}}');
	picture.document.writeln('document.onmousedown=rc;if (document.layers) window.captureEvents(Event.MOUSEDOWN);window.onmousedown=rc;');
	picture.document.writeln('\n// -->\n</sc'+'ript>\n<link rel="stylesheet" href="tac.css" type="text/css"></head>');
	picture.document.writeln('<body onLoad="window.resizeTo(document.images[0].width+50,document.images[0].height+100);window.moveTo((screen.availWidth-document.images[0].width-50)/2,(screen.availHeight-document.images[0].height-100)/2);" bgcolor="#ffffff" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><table width="100%" border="0" cellspacing="0" cellpadding="10" height="100%"><tr>');
	picture.document.writeln('<td align="center" valign="middle"><img src="'+loc+'" border="0" alt="' + title + '" galleryimg="No"><br><p><a href="JavaScript:window.close()">Close Window</a></p></td>');
	picture.document.writeln('</tr></table></body></html>');
	picture.document.close();
	picture.focus();
}

