mytown = "";
mytype = "";

function Everything(){
Go("all");
}

function Town(t){
mytown = t;
Go(t);
}

function Type(t){
mytype = t;
Go(t);
}

function Go(t){
myamp = new RegExp(" & ","g"); // g finds all e.g. Bed & Breakfast
myspace = new RegExp(" ","g"); // g finds all e.g. Eastern Cape
myurl = (document.domain == 'localhost')? "http://localhost/bookaplace/list.php?": "http://www.bookaplace.co.za/list.php?";
if (t=="all") {
myurl = myurl + "province=" + province + "&region=" + region;
} else {
if (!mytown) myurl = myurl + "province=" + province + "&region=" + region + "&type=" + t;
if (mytown) myurl = myurl + "town=" + mytown;
}
myurl = myurl.replace(myamp,"%20%26%20")
myurl = myurl.replace(myspace,"%20")
document.location = myurl;
}
