
function PopNotes(msg){
var msg = "<TITLE>PSPL Friends' Photo Notes</TITLE>" +
"<BODY BGCOLOR='SILVER'>" +
"<blockquote><font face='times new roman,arial' size='2'>" +
"- images may take a while to load<BR>" +
"<BR>" +
"- captions may be read by moving your computer mouse over a given picture<BR>" +
" &nbsp; &nbsp; &nbsp; &nbsp; <I>(n.b., not all browsers have this capability)</I><BR>" +
"<BR>" +
"- full-size photos may be viewed or saved by right-clicking the given picture<BR>" +
"&nbsp; &nbsp; &nbsp; &nbsp; <I>(n.b., not all browsers have these capabilities)</I><BR>" +
"<BR>" +
"- <A HREF='rights.htm' TARGET='TOP'>please click here to view requirements for re-use of these images</A><BR>" +
" &nbsp; &nbsp; &nbsp; &nbsp; <I>(this will open a new browser window)</I><BR>" +
"<BR>" +
"- there are no photos prior to 2003, or during 2006 or 2008<BR>" +
"</font></blockquote>" +
"<BR>" +
"<CENTER><FORM><INPUT TYPE='BUTTON' VALUE='Click here to CLOSE this window' onClick='self.close()'>" +
"</FORM></CENTER>" +
"</BODY>"

popup = window.open("", "popDialog", "height=300,width=600,scrollbars=yes")
popup.document.write(msg)
popup.document.close()
}

