function TryThis() {
       window.location = "http://www.nypl.org"
}
var stayOn = "news";
//*************Zoom Photo Popup********************
function ZoomPhoto(pic_id) {
var CurrentWidth, HcenterPoint, PopUpWidth, AdjustedPopUpWidth, PointX, CurrentHeight, VcenterPoint, PopUpHeight, AdjustedPopUpHeight, PointY;
CurrentWidth = screen.availWidth;
HcenterPoint = CurrentWidth/2;
PopUpWidth = 600;
AdjustedPopUpWidth = PopUpWidth/2;
PointX = HcenterPoint-AdjustedPopUpWidth;

CurrentHeight = screen.availHeight;
VcenterPoint = CurrentHeight/2;
PopUpHeight = 600;
AdjustedPopUpHeight = PopUpHeight/2;
PointY = VcenterPoint-AdjustedPopUpHeight;

	popup = window.open("zoom_pict.cfm?pic_id="+pic_id, "", "height=600,width=600,toolbar=yes,menubar=yes,scrollbars=yes,status=yes,resizable=yes,top="+PointY+",left="+PointX);

}
function ClosePopUpWindow(){
if (popup) {
popup.close()
}
}