

var homepageConsult = "";
var homepageReserve = "";
var homepageMain = "";


function popHospitalInfo(focusPage, hid, visitid)
{
	var path  = "/hkcommon/popHospitalinfo/popHospitalInfo.aspx?hid=";
	var shape = "width=575,height=600";
	
	if(focusPage == "main")
	{
		path += hid + "&focus=main";
	}
	else if(focusPage == "visit")
	{
		path += hid + "&focus=visit";
	}
	else if(focusPage == "map")
	{
		path += hid + "&focus=map";
	}
	
	open_popup(path, shape, "popInfo");
}


function popConsult(hid)
{
	alert(hid + " º´¿ø»ó´ã");
}


function popOnlineRes(hid)
{
	alert(hid + " º´¿ø¿¹¾à");
}

function setUrl(pathMain, pathConsult, pathReserve)
{
	homepageMain		= pathMain;
	homepageConsult	= pathConsult;
	homepageReserve	= pathReserve;
}

function popConsultView(LinkInfo)
{
	var path  = LinkInfo;
	//var shape = "width=765,height=560";
	var shape = "width=570,height=560";
	open_popup(path, shape, "popConsultView");
}


