function showPhoto(photoTitle,theImage,theW,theH,theBG,fColor){var pT = photoTitle;var im = theImage;var w = theW;var h = theH;if(theBG == "" || theBG==null){var b = "#000000";}else{var b = theBG;}if(fColor == "" || fColor==null){var l = "#FFFFFF";}else{var b = theBG;var l = fColor}thePhoto = open("","eventPhoto","width=465,height=400,alwaysRaised=1,resizable=1,scrollbars=1");thePhoto.document.write("<HTML><HEAD><TITLE>"+pT+"</TITLE></HEAD>");thePhoto.document.write("<BODY BGCOLOR='"+b+"' LINK='"+l+"' onBlur='window.close()'>");thePhoto.document.write("<DIV ALIGN=center>");thePhoto.document.write("<IMG SRC="+im+" WIDTH="+w+" HEIGHT="+h+">");thePhoto.document.write("<P><A HREF='javascript: window.close()'>Click here to close</A>");thePhoto.document.write("</DIV></BODY></HTML>");thePhoto.document.close();}function showDoc(theURL){theMsg = open(theURL,"Info","width=600,height=400,alwaysRaised=1,resizable=1,scrollbars=1");}