// lth_home.js

//[The popup tha tshows when you click something on the map
function Popup_Info()
{
	this.dialog_div = "div_popup_info";
}

function Popup_Info_Show()
{
	with (this)
	{
		fnShow(dialog_div);
	}
}
//]

var g_Popup_Info = new Popup_Info();

function fnInit()
{
	fnHide("div_popup_info");
}


