/*
	Updates the page location.
*/
function cbrands_location(new_location)
{
	if (new_location != '' && new_location != 'ignore')
	{
		document.location = new_location;
	}
	
	return false;
}

