// JavaScript Document
// checks URL, and if it isn't the frameset, opens the frameset and inserts the relevant html files in the relevant frames

function getContentURL() {

	var nowURL = (document.location.href);
	var pos = nowURL.lastIndexOf("=");
	if (pos == -1)
	{
		var queryString = "home.htm"
	}
	else
	{
		var queryString = nowURL.substring (pos + 1, nowURL.length);
	}
	return queryString;
	
}

