function AccountLocator()
{
	this.onClick = AccountLocator__onClick;
}

function AccountLocator__onClick(sID,sType)
{
	var oElement = document.all(sID);
	if (oElement == null)
		return;
	var vtRet = Popup("/manage/Common/AccountLocatorContainer.aspx?AccountLocatorId=" + oElement.value + "&Type=" + sType, "389", "504");
	if (vtRet != null)
		oElement.value = vtRet;
}
