/*
Detect the Browser
*/
var ns4 = (document.layers);
var ie4 = (document.all && !document.getElementById);
var ie5 = (document.all && document.getElementById);
var ns6 = (!document.all && document.getElementById);

var stores = new Array (4);
stores[0] = "- Select a Location -";
stores[1] = "Venetia, PA";
stores[2] = "Baldwin, PA";
stores[3] = "Waynesburg, PA";

var maps = new Array (4);
maps[0] = "http://www.vaccarienterprises.com/images/map.jpg";
maps[1] = "http://www.vaccarienterprises.com/images/venetia/map.jpg";
maps[2] = "http://www.vaccarienterprises.com/images/baldwin/map.jpg";
maps[3] = "http://www.vaccarienterprises.com/images/waynesburg/map.jpg";

function  searchGoogle ()
{
  var url;
  var userSearch = document.searchForm.sstring.value;

  if (userSearch == "")
  { window.alert ('Please Enter Your Search String');
    return;
  }

  url = "http://www.google.com/search?hl=en&q="+userSearch+"+site:http://www.tackleunlimited.com";
  window.open (url);

}

