function boxHighlight(id,status) { 
	var img = document.getElementById('boxImage'+id);
	var box = document.getElementById('box'+id);
	if (img) {
		if (status == '1'){
			img.className = "alpha";		
		} else {
			img.className = "";
		}
	}
	/*
	if (box) {
		if (status == '1'){
			box.className = "box alpha";		
		} else {
			box.className = "box";
		}
	}
	*/
}