<!--

function browse_all_bybrand(brand){
	if (brand == '') {
		alert('Choosing a Brand takes you to it immediately.');
	}
	if (brand != '') {
	var URL = '/browse/' + brand + '.html';
	window.location.href = URL;
	}
}

function browse_L2(url){
	var URL = url;
	window.location.href = URL;
	}

// -->