// Copyright(C)2005 Nexus Software Systems, http://www.nexwebsites.com/
function showSitePage(form) {
var formindex=form.snPageName.selectedIndex;
parent.self.location=form.snPageName.options[formindex].value;
}

 function Boing(newin) {
 flyout=window.open(newin,"bubba","resizable=yes,scrollbars=yes,width=780,height=550,top=1,left=1")
 }

 function Boing(newin) {
 flyout=window.open(newin,"bubba","resizable=yes,scrollbars=yes,width=780,height=550,top=1,left=1")
 }

function Validate(form)
{
  if (form.Name.value == "")
  { alert("Please include your name in visitor details"); form.Name.focus(); return; }
  if (form.Email.value == "")
  { alert("Please include your email address in visitor details"); form.Email.focus(); return; }
  if (form.Email.value.indexOf('@', 0) == -1 ||
      form.Email.value.indexOf('.', 0) == -1)
  { alert("Please enter a valid email address in visitor details"); form.Email.focus(); return; }
      form.submit();
}

// Copyright(C)2005 Nexus Software Systems, http://www.nexwebsites.com
function checkFields() {
q = document.f.q.value;
b = document.f.b.value;
if ((q == "") && (b == "") ) {
alert("Please select either a keyword or a business name to complete your search.");
return false;
}
else return true;
}

function populateCategory(Category) {
	if (Category) {
        document.f.q.value = Category;
	}
	}
	
  function menu_jump(path) {
    window.location.href = path.options[path.selectedIndex].value;
  }

