
// The opened popup
var deeplink;
var subdeeplink;
var startindex;
var endindex;

/**
 * Output all sorts of location info
 */
function outputLocationInfo() {	

	deeplink = (location.search);
	subdeeplink = deeplink.substr(1);
	subdeeplink = subdeeplink.substr(5);
	if (subdeeplink ==""){
			subdeeplink =  "scrollhome";
	}
	return subdeeplink;
}





