function initSite()
{
	var highlight = _GET("highlight");
	
	if (highlight)
	{
		highlight = decodeURI(highlight);

		if (document.getElementById("content") != undefined)
		{
			x = document.getElementById("content");
			highlightText(highlight, "highlighted", x);
		}
	}
	
	if (window.g_message != undefined && g_message != "")
	{
		window.alert(g_message);
	}
}

addOnload(initSite);
