
	/*
		this file is used to force people into the template.
		incase someone clicks "open in new window" or "open in new tab".
		
		it will redirect to the param ?this_file.html
		wont work with subdirectories, could be expanded in future tho...
		just need to do a split on hostname.
	*/
	var inDesign = true;
	/*
	if (!inDesign)
	{
		var url = window.location.href.split("/");
		url.reverse();
		window.location = "./?"+url[0];
	}
	*/
