function getStartSectionFromQS() {
	var fullURL = parent.document.URL;
	var sectionIndex = fullURL.indexOf("#/");
	if(sectionIndex>0){
		var section = fullURL.substring(fullURL.indexOf('#/')+2, fullURL.length);
		
		return section;
		
	}
	return "";
}


