 FcurUrl()
function FcurUrl(){
		var curUrl = location.href;
		var curHost = "http://"+location.host;
		var curHostFull = "http://"+location.host+"/";
		var path = location.pathname;
		/*document.write('curUrl: '+curUrl+'<br />');
		document.write('curHost: '+curHost+'<br />');
		document.write('curHostFull: '+curHostFull+'<br />');
		document.write('path: '+path+'<br />');
		document.write('curUrlcucc:'+curUrl.indexOf("#")+'<br />');*/
		if(curUrl.indexOf("#") < 0) {
			//document.write("Nincs benne #"+"<br />");
			//document.write("pathL: "+path.length+"<br />");
			//document.write('location.href: '+curHost+"#"+path.substring(1,location.pathname.length)+'<br />');
			if(1 < path.length && path != "/scl/fbtg/"){
			//	document.write(curHost+"#"+path.substring(1,location.pathname.length)+'<br />');
				location.href = curHost+"#/"+path.substring(1,location.pathname.length);
			//	document.write(location.href+'<br />')
			}
		}else{
		/*	document.write("Van benne #"+"<br />");
			document.write(curHostFull.length+' ?==? '+curUrl.indexOf('#')+'<br />')
			document.write('curHostFull: '+curHost+"#"+path.substring(1,location.pathname.length)+'<br />');*/
			if(curHostFull.length != curUrl.indexOf('#') && path != "/scl/fbtg/"){
				//Removes the # form the string an injects i at the right place.
				location.href = curHost+"#"+path.substring(1,location.pathname.length);
				//document.write('OK: '+location.href)
			}
		}
}
