// used for all div internal content. In case of direct invocation we redirect
var org;
if (org == null){
	/*/ we redirect
	*/
	var newurl = location.pathname;
	if (newurl.indexOf("/") == 0)
			newurl = newurl.substring(1);
	window.location.href = "/index.html#" + newurl;
};		

