function followURL(URL)
{
	window.open(URL);
}

function RefreshForm()
{
	var sPage = '<%=Request.ServerVariables("SCRIPT_NAME")%>?c=true';
	sPage = sPage + '&cboService=' + document.all["cboService"].value;
	sPage = sPage + '&cboCity=' + document.all["cboCity"].value;
	//sPage = sPage + '&cboRegion=' + document.all["cboRegion"].value;
	
	window.location.href = sPage;
}
