//	File: frameset.js

function setFrame() {
// Set the url in the frame "mainFrame" to
//	whatever was passed after the ? on the incoming URL
	n = document.URL.lastIndexOf("?")
	if (n > 0)
		parent.mainFrame.location.href =
			document.URL.substring(n+1,document.URL.length)
	else
		parent.mainFrame.location.href = "welcome.htm"
}
// End frameset.js

