<!-- hide script from old browsers

function smallWindow(link) {

  window.open(link,'mywindow',config='height=580, width=800, toolbar=yes, menubar=yes, scrollbars=yes, resizable=yes, location=yes, directories=yes, status=yes') 

} // end function


// navbar.js

var navURLs  = new Array('PHgalleryhome.htm', 'PH2002SA.htm', 'PHafrica2000.htm', 'PHarlogallery.htm', 'PHcolman.htm', 
'PHdonovan.htm', 'PHitaly.htm', 'PHJohnson.htm', 'PHkatz.htm', 'PHmidkiff.htm', 'PHmiller.htm', 'PHmiscphotos.htm',
'PHpositano.htm',  'PHswiftgallery.htm', 'PHwalid.htm', 'PHwickey.htm','PHrcarr.htm','PHquebec.htm','PHfrey.htm','PHcron.htm','PHrossi.htm','PHyellowflowers.htm','PHmurphy.htm',
'PHwarren.htm','PHkoby.htm','PHyoungshawn.htm','PHsuz.htm','PHhoneychild.htm','PHgateway.htm','PHaerts.htm','PHparks.htm','PHEurope2004.htm','PHPositano2005.htm','PHEvangelist.htm','PHBoleyn.htm');
var linkText = new Array('Gallery Home', 'South Africa 2002 Tour', 'South Africa 2000 Tour', 'Hennings Gallery', 'Mark Colman Gallery', 
'Shawn and Donovan', 'Italy Tour 1999',  'Ed Johnson Gallery',  'Debra Katz Gallery',  'Midkiff Gallery',  'Amy Miller Gallery',
'Misc Photos', 'Positano Gallery', 'Gary Swift Gallery', 'Circus 2003 Gallery', 'Mr. Wickey Gallery', 'Shoe Box Gallery','Quebec 2000 Tour','Frey Gallery','Cron Gallery','Rossi Gallery', 'Yellow Flowers Gallery',
'Murphy Gallery','Warren Gallery','Koby Gallery','Young Shawn Gallery','Suz Gallery','Honey Child Gallery','Gateway Philharmonic Gallery','Aerts Gallery','Merri Lu Park Gallery','Europe 2004 Tour Gallery','Positano 2005 Reunion',
'Mike Evangelist Gallery','Jesse Boleyn Gallery');

function navbar() {
	var navStr= '';
	for (var i = 0; i < navURLs.length; i++) {
		//	if (location.href != navURLs[i]) {		    	   Uncomment this line and comment 
		if (location.href.indexOf(navURLs[i]) == -1) {	                   //this one when not browsing locally
			navStr += ' <font face="Arial" size="2"><B><A HREF="' + navURLs[i] + '">' + linkText[i] + '</A></B></font>&nbsp;&nbsp;&nbsp; '; 
			}
		}
	document.writeln('<BR><BR>' + navStr);
	} // end function
	
// end hiding script from old browsers -->
