function setVisiblityResults(visible) {
  var r = window.document.getElementById('results');
  if (r) {
    r.style.visibility = visible;
  }
}

function bookmarkSite() {
  var title = window.document.title;
  var url   = window.location.href;
  if (document.all) {
    window.external.AddFavorite(url, title);
  } else if (window.sidebar) {
    window.sidebar.addPanel(title, url, '')
  }
  return false;
}

function bookmarkSite1() {
  var title = 'CoralSpringsPages';
  var url   = 'http://www.coralspringspages.com';
  if (document.all) {
    window.external.AddFavorite(url, title);
  } else if (window.sidebar) {
    window.sidebar.addPanel(title, url, '')
  }
  return false;
}


function setHomePage(ref) {
  if (document.all) {
    ref.style.behavior = 'url(#default#homepage)';
    ref.setHomePage('http://www.coralspringspages.com');
  } else if (document.getElementById) {
    alert('Drag this link onto your Home button to make this your Home Page.');
  }
  return false;
}

function coupons(cid) {
  window.open('/coupons.php?cid='+cid, null, 'location=no,menubar=yes,resizable=yes,width=610,height=430');
}

function search_list(){
    try{
        document.getElementById("end_search").focus();
        str = String("parent_"+document.getElementById("first_elem").value);
        first_element = document.getElementById(str);
        first_element.focus();
         document.getElementById("begin_search").focus();
    }catch(e){
        //alert(e);
    }
}