// <script>
// The site does not currently use javascript but the file is here
// so it can be used at some point down the road. The functions below
// were used in an earlier version of the site desig.

// ----- Popup Control ---------------------------------------------------------
function mouseOver(which, image)
{
	document.images[which].src=image;
}

function mouseOut(which, image)
{
	document.images[which].src=image;
}

function at_display(x)
{
 win = window.open();
 for (var i in x) win.document.write(i+' = '+x[i]+'<br>');
}

