/** Needed to work on IE6: Otherwise parameters are gone **/	
function getLocationWithParams() {					
	var sPath = window.location.href;
	var sPage = '';

	if (sPath.lastIndexOf('#') == -1) {
		sPage = sPath.substring(sPath.lastIndexOf('/') + 2);
	}
	else {
		sPage = sPath.substring(sPath.lastIndexOf('#') + 1);
	}
	return sPage;
}