if ( host )
{
	// this object contains the parsed pieces of the document url
	var url = host.util.crackURL( host.URL );

	// url.cQuery will be the query string, i.e. the part after the "?" (question mark)
	
	// url.cFragment is the part after the "#" (hash) symbol
	if ( url.cFragment )
	{
		var animate = false;
		runtime.setView( url.cFragment, animate );
	}
}
