
// 功能：弹开切换公司窗口
// 返回：公司名称
function _selectCurrentBU(params)
{
	var sTitle, sHeight, sFile;
	var iWidth, iHeight;

	sWidth = "360";
	sHeight = "500";

	sTitle = "选择公司";
	sHeight = "";
	sFile = "/Security/SelectCurrentCompany.aspx";

	// 拼写url字符串
	var url = "/FrameTemp0.aspx";
	url += "?title=" + escape(sTitle);
	url += "&height=" + escape(sHeight);
	url += "&filename=" + escape(sFile);
	url += "&param=" + escape(params);

	var returnValue = window.showModalDialog(url, "", "dialogWidth:" + sWidth + "px; dialogHeight:" + sHeight + "px; status:no; help:no; resizable:yes;");
	return returnValue;
}