// JavaScript for top-level documents
if (top != self) top.location.href = location.href;

var fInitialized = false;
function LoadMain()
{
	if (!fInitialized)
	{
		var sHash = location.hash;
		sHash = sHash.substring(1, sHash.length);
		if (sHash)
		{
			fInitialized = true;
			frames["main"].location.href = sHash;
		}
	}
}

