//<script language="javascript">
<!--
  // FUNCTION TO DO BASIC CHECKS ON SEARCH
  function chkSearchForm(strSource)
  {
    // STANDARDISE DOCUMENT OBJECT PATH (MAKES IT A BIT EASIER)
    d = document.forms["SearchArtist"]
	// IF SOURCE IS "submit" CHECK IF ENTRY IS VALID"
	if (strSource == "submit")
    {
	  if (d["o|artist"].value == "Enter event or show")
	  {
	    d["o|artist"].value = "";
	  }
	  if (d["datefrom"].value == "date (dd/mm/yyyy)")
	  {
		 d["datefrom"].value = "";
	  }
	  return true;
	}

  }
  
function popup_venue() {
	window.open("","venue_box","top=5,left=5,toolbar=no,width=790,height=460,resizable=yes,scrollbars=yes,status=no");
	}

function popup_event() {
	window.open("","event_box","top=20,left=20,toolbar=no,width=710,height=460,resizable=yes,scrollbars=yes,status=no");
	}

function popup_email() {
	window.open("","event_box","top=20,left=20,toolbar=no,width=422,height=485,resizable=yes,scrollbars=yes,status=no");
	}

//-->
//</script>