/* Copyright Vanilla active Ltd 2008 - */
 
function _document_onclick(e)
{var event = e ? e : window.event;
 var target = e ? event.target : event.srcElement;
 
 
}
function doZoom(elem1,p,n)
{document.getElementById("galleryArea").className="fadeClassGallery";
 document.getElementById("zoomGallery").style.visibility="visible";
 var elem="pictureZoomPittsburg.cfm?imageID="+elem1+"&posn="+p.toString(10)+"&maxImages="+n.toString(10);
 document.getElementById("theZoom").src=elem;
}
function doReveal()
{window.parent.window.document.getElementById("zoomGallery").style.visibility="visible";}
function doClose()
{window.parent.window.document.getElementById("zoomGallery").style.visibility="hidden";
 window.parent.window.document.getElementById("galleryArea").className="fadeClassZoom";
 window.location="blank.htm";
}
/*===========================================================================================================================*/
/*============================================================Event handlers=================================================*/
if (document.layers) document.captureEvents(Event.ONCLICK);
	document.onclick = _document_onclick;
/*==============Added for event page=========================================
if (document.layers) document.captureEvents(Event.ONMOUSEOVER);
document.onmouseover = _document_onmouseover;

if (document.layers) document.captureEvents(Event.ONMOUSEOUT);
document.onmouseout = _document_onmouseout;

if (document.layers) document.captureEvents(Event.ONKEYPRESS);
document.onkeypress = _document_onkeypress;
/*============================================================================================================================
if (document.layers) document.captureEvents(Event.ONFOCUS);
document.onfocus = _document_onfocus;
*/
/* Copyright Vanilla active Ltd 2008 - */