var current_loc = false;

var setAnc=function(name){ document.location.hash=name; current_loc=document.location.hash; };

function checkLocation()
{
	var hash = document.location.hash;    
    if (hash!=current_loc)
	{
		current_loc = hash;
		var MSIE = (navigator.userAgent.indexOf("Microsoft") != -1) && !window.opera;
		var flash = MSIE ? window['flash'] : document['flash'];
		var obj={};
		hash.replace(/(\w+)=([\w\/.]+)/g, function(s, k, v){ obj[k]=v; });
		flash.retAnc(obj);
    }
}

swfobject.embedSWF('index.swf', 'flash', '100%', '100%', '8.0.0', 'expressInstall.swf');
setInterval(checkLocation, 500);
