//JScript File

//Functions
function _mfSearchText()
{
if(document.getElementById('txtKeywords').value == '')
  document.getElementById('txtKeywords').value = 'Bar';
}

function _mfDeleteBusiness(pintBusinessId)
{
  if (confirm('Are you sure you wish to delete the selected business?'))  
  {
    window.location.href = '?DBId=' +pintBusinessId
  }
}

function _mfFindBusiness(pstrUrl)
{
  var Url = pstrUrl 
  var strCategory = document.getElementById('cboBusinessCategory').options[document.getElementById('cboBusinessCategory').selectedIndex].value 
  var strKeywords = document.getElementById('txtKeywords').value;
  var strType     = document.getElementById('cboBusinessType').options[document.getElementById('cboBusinessType').selectedIndex].value;
  var strCounty   = document.getElementById('cboBusinessCounty').options[document.getElementById('cboBusinessCounty').selectedIndex].value

  window.location.href="/" + Url + "?Criteria=" + strKeywords + "&CategoryId=" + strCategory + "&Type=" + strType + "&County=" + strCounty ;
}


