



<!-- Jump to a page using a form -->
function jumpPage(newLoc)
{
	newPage = newLoc.options[newLoc.selectedIndex].value;
	
	if(newPage !="#")
	{
		window.location = newPage;
	}
}




<!-- Open content into a new but smaller window -->
function openWindow(url, w, h)  {
  newWindow= window.open(url,  'HSDBImage', 'resizable=yes,status=no,scrollbars=yes,width=' + w + ',height=' + h)

newWindow.focus()

}


<!-- Print Function -->
function printit(){
if (!window.print){
alert("I'm sorry.  You need a new web browser to use this print button!")
return
}
window.print()
}









			