function openExternal(url, title, width, height) {
	window.open(url, '', 'width='+width+', height='+height+', scrollbars=1');
	return false;
}

$(function(){
	if($.browser.msie) {
		$("#sitemap div")
			.css("display", "inline")
			.addClass("inline-block");
	}
})
			
			
