function SBL_route(linkpath)
{
	if (navigator.userAgent.indexOf("MSIE") == -1 || navigator.appVersion.indexOf("4.") != - 1)
		window.open(linkpath, "window",
			"width=620,height=410," +
			"toolbar=0,location=0,directories=0,status=0,menubar=0," +
			"scrollbars=0,resizable=0");                
	else
		window.open(linkpath, "window", "width=620-23,height=410-23," +
				"toolbar=0,location=0,directories=0,status=0,menubar=0," +
				"scrollbars=0,resizable=0");
}