if (Left_Navigation_Selected!=null && Left_Navigation_Selected!="")
{
	// alert(Left_Navigation_Selected);

	// change space, single quote, &amp;, @, . and - to underscore

	Left_Navigation_Selected = Left_Navigation_Selected.replace(/&/g, "_");
	Left_Navigation_Selected = Left_Navigation_Selected.replace(/&amp;/g, "_");
	Left_Navigation_Selected = Left_Navigation_Selected.replace(/ /g, "_");
	Left_Navigation_Selected = Left_Navigation_Selected.replace(/'/g, "_");
	Left_Navigation_Selected = Left_Navigation_Selected.replace(/@/g, "_");
	Left_Navigation_Selected = Left_Navigation_Selected.replace(/\./g, "_");
	Left_Navigation_Selected = Left_Navigation_Selected.replace(/-/g, "_");
	Left_Navigation_Selected = Left_Navigation_Selected.replace(/,/g, "_");

	//alert(Left_Navigation_Selected);

	document.write('<script type="text/javascript" src="/ssi/' + Left_Navigation_Selected + '.js"></script>');
}

