function findUrl()
	{
	var currentPage = window.location.href;
	var foundAt = 0;
	currentPage = currentPage.substr(currentPage.lastIndexOf("/")+1);
	foundAt = currentPage.indexOf("#");
	if (foundAt != -1){ 
		currentPage = currentPage.substring(0,(foundAt) -1);
		}
	currentPage = currentPage.substr(0,(currentPage.length) -3);	
	return currentPage;
	}