function getErrorUrl() {
	szURL = document.URL;
	componentList = szURL.split('/');
	szDocument=componentList[componentList.length-1];
	if (szDocument.length > 0)
	 {
		 document.write("/" + szDocument);
		 }
	 else
	 {
		 document.write("that page");
	 }
}
