
function showPic(loc) {
	var title = "Highbury Apartments";
	var stropt='toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=auto,resizable=0,width=1,height=1,left='+((screen.availWidth - 1)/2)+",top="+((screen.availHeight - 1)/2);
	var picture = window.open('','Gallery',stropt);
	picture.document.writeln('<html><head><title>Highbury Apartments</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');	
	picture.document.writeln('\n<link rel="stylesheet" href="ha.css" type="text/css"></head>');
	picture.document.writeln('<body onLoad="window.moveTo((screen.availWidth-document.images[0].width-50)/2,(screen.availHeight-document.images[0].height-100)/2);window.resizeTo(document.images[0].width+50,document.images[0].height+100);" 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()" title="Close">Close Window</a></p></td>');
	picture.document.writeln('</tr></table></body></html>');
	picture.document.close();
	picture.focus();
}

