function ShowCategory(categoryid) {
	if(categoryid !="") {
		top.location.href="/catalog/search.cfm?categoryid=" + categoryid;
	}
}
function ShowBreed(BreedID) {
	if(BreedID !="") {
		top.location.href="/catalog/search.cfm?DogBreedID=" + BreedID;
	}
}
function JumpTo(theurl){
  if(theurl !="") {
    top.location.href=theurl;
  }
}