


// function for the rollovers - not used?  I'll have to check at cleanup time...oughta be a toggler...
function picover(whichpic,name){
if (document.images){
		newsrc = "images/" + name + "_on.jpg"
		document.images[whichpic].src = newsrc
	}
}

// pop full size
function popHeaderImage(whichpic,width,height){
	picname = "showpic.php?whichpic=" + whichpic
	stats = "height=" + height + ",width=" + width + ",resizable,left=50,top=50,screenX=50,screenY=50"
	window.open(picname,'displaywin',stats)
}

// pops a window with printable version of directions page passed to it.
function printDirections(fromWhere){
	theLoc = fromWhere + ".php?printable=true"
	var printme = window.open(theLoc,"","left=0,screenX=0,top=0,screenY=0,height=500,width=500,resizable,scrollbars,menubar")
}