// Javascript for the BoneStation Web Site
// March 2004 -- Domani Software

// Function to display the rollover images in the main menu when mouse moves over
function swapImage( name, img )
{
	document.images[ name ].src = img
}

// Function to redisplay the original images in the main menu when mouse moves out
function restoreImage( name, img )
{
	document.images[ name ].src = img
}

// Function to open the tour window
function openTourWindow( url )
{
	window.open(url,"BoneStationTour","alwaysRaised,scrollbars,width=800,height=600,resizable,left=5,top=5");
}

// Function to close the tour window
function closeTour()
{
	window.close()
}

