﻿var LM = {};
LM.Index = {
	DeepLinking: function() {
		var obj = Browser.Plugins.Flash;
		if (obj.version >= 10) {
			if (!location.hash) {
				var hashPath = location.pathname.split("/")[location.pathname.split("/").length - 1];
				var pageTracker = _gat._getTracker(gacode);
				pageTracker._trackPageview();
				window.location = location.protocol + "//" + location.host + path + "/" + "#" + hashPath;
			}
		}
	}
}

function doRedirect(newUrl1)
{
	var s = newUrl1.replace("#", "%23");
    //window.location = s;
	window.open(s);
}
