function getFileNameTop() {
var strFileName;
var intLocation;
var strSiteName;

strSiteName = "www.iwchallenge.com"
strFileName = document.location.pathname;

//pathname starts at host URL and a slash so it will always return one slash
if (strFileName.length == 1)
	{
	//this has to be set for the default file for the site!
	strFileName = "/default.asp";
	}
return strSiteName + strFileName;
}