// This file will reduce the load of the redirect file which helps static page management
params = "";
if( window.location.search && window.location.search.length > 0 )
	params = window.location.search;
if( document.referrer.length > 0 )
	referer = document.referrer;
else
	referer = 1;
if( params.length > 0 )
	params = params + "&redirected=" + referer;
else
	params = "?redirected=" + referer;
document.links[0].href = rUrl + params;
window.location.replace(rUrl + params);