var callingFrame; // Global variable holding the URL of the frame calling the Glossary
// Sets the variable defined above to the URL of the frame calling the Glossary
function setFile(URL)
{
	callingFrame = URL
}
// Returns to the frame that originally called the Glossary
function returnToFrame()
{
	parent.main.location.href = callingFrame;
}
