//This function changes the checkboxes for email updates. - Works using FF IE7 and IE6
function CheckBoxClick(id){
if (document.getElementById('lists_'+id).checked == true){
	document.getElementById('label_'+id).style.backgroundImage = 'url(http://www.businessmanagementdaily.com/templates/Gazette/Images/eml_update_bullet.gif)';
	}else{
	document.getElementById('label_'+id).style.backgroundImage = 'url(http://www.businessmanagementdaily.com/templates/Gazette/Images/eml_update_bullet_checked.gif)';
	}
}

