var skipHashCheck = false;
function fixIFrameAndURL(obj)
{
	var contentDocument=obj.contentDocument?obj.contentDocument:obj.contentWindow.document;

	if(/\/blank\.jsp/.test(contentDocument.location.href))
	{
		setIFrameUrl(obj);
		return;
	}	
	skipHashCheck = true;
	//if(!/MSIE (\d+\.\d+);/.test(navigator.userAgent))
	location.replace('#'+escape(contentDocument.location.href));
	if(!/\/page_no\//.test(contentDocument.location.href)&&!/\/pageNo\//.test(contentDocument.location.href)&&!/\/resultPerPage\//.test(contentDocument.location.href))
		window.scrollTo(0,0);
}

function setIFrameUrl(obj)
{
	var iFrameURL='/estore-Mqestore/modules/artList/cat_id/240/idx_id/0/sortByField/activation_date/sortOrder/desc';

	var contentDocument=obj.contentDocument?obj.contentDocument:obj.contentWindow.document;

	var hash = document.location.hash
	if(hash!='')
		iFrameURL=unescape(hash.replace("#", ""));
	 setTimeout(function(){
        contentDocument.location.href=iFrameURL;
    },0)
}

function locationHashChanged() 
{
//	alert(location.hash+'::'+skipHashCheck);
	if(!skipHashCheck)
	{
		setIFrameUrl(document.getElementById('estoreframe'));
	}
	skipHashCheck=false;
}

window.onhashchange = locationHashChanged;
