// JavaScript Document
function ShowMap(id)
{
	var w = 800;
	var h = 600;
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable=yes';
	window.open("branches/show_map.asp?u_id=" + id,"MHB_Map",winprops);
}
function OpenSelectBranch()
{
	var w = 570;
	var h = screen.height-100;
	var winl = (screen.width - w) / 2;
	var wint = 0;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable=yes';
	window.open("default-open.asp?p=selectServiceBranch.asp","MHB_SelectBranch",winprops);
}
function SelectBranch(id, Ten, TenCN)
{
	window.opener.SetBranch(id, Ten, TenCN);
	window.close();
}
function SetBranch(id, Ten, TenCN)
{
	t = document.getElementById("txtChiNhanh");
	t.innerHTML = Ten + " - " + TenCN
	x = document.getElementById("cn_id");
	x.value = id;
}
