function isDefined(val){
	if(val == '' || val == null || val == 'undefined') return false;
	else return true;
}
var loc = document.location.href.split('nieuwekerk.nl');
if(!isDefined(loc[1])) loc = document.location.href.split('localhost:81');

var m = '';
var mnd = document.location.href.split('m=');
if(isDefined(mnd[1])) m = '?m='+mnd[1];
var url = '/'+ loc[1].substring(1,3) +'/#'+ loc[1] + m;
document.location.href = url;
