function roxell(id) {
	document.getElementById(id).innerHTML = "<span onmouseout='roxellout(\""+id+"\")'><img src='images/roxell/1.jpg' /><a href='http://www.roxell.com' target='_blank'><img src='images/roxell/2.jpg' /></a><a href='http://www.roxellusa.com' target='_blank'><img src='images/roxell/3.jpg' /></a><a href='http://www.roxell.com' target='_blank'><img src='images/roxell/4.jpg' /></a><a href='http://www.roxellusa.com' target='_blank'><img src='images/roxell/5.jpg' /></a></span>";
}
function roxellout(id) {
	document.getElementById(id).innerHTML = "<a href='#' onmouseover='roxell(\""+id+"\")'><img src='images/txt_images/b_roxell.gif' /></a>";	
}
/*****************************************************************************/
function addBrandToChart(maximum) {
	var boxes = document.getElementById("brand-list").getElementsByTagName("input");
	var b = new Array();
	for(i = 0; i < boxes.length; i++) {
		if (boxes[i].checked && b.length < maximum) {
			b.push(boxes[i].id.replace('b-', ''));	
		} else {
			boxes[i].checked = false;	
		}
	}
	xajax_addBrandToChart(b);
}