// 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 = 580;
	var h = 680;//screen.height-100;
	var winl = (screen.width - w) / 2;
	var wint = 0;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable=no';
	window.open("../default-open.asp?p=selectServiceBranch.asp","MHB_SelectBranch",winprops);
	//window.open("../default-open.asp?p=branches/list4select.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;
}
*/
function SelectBranch(id, Ten, DiaChi)
{
	window.opener.SetBranch(id, Ten, DiaChi);
	window.close();
}
function SetBranch(id, Ten, DiaChi)
{
	t = document.getElementById("txtChiNhanh");
	t.innerHTML = Ten + " - " + DiaChi
	x = document.getElementById("cn_id");
	x.value = id;
}
