function ShowImage(table, item){ 
images = new Array("ImMI"+table+"1", "ImMI"+table+"2", "ImMI"+table+"3");
cells = new Array("td"+table+"1", "td"+table+"2", "td"+table+"3");

ItemId = "ImMI"+table+item; 
td = "td"+table+item; 

	for (keyOther in images) { 
		if (ItemId != images[keyOther] && $("#" + images[keyOther]).is(":visible")) { 
			$("#" + images[keyOther]).hide(); 
		} 
	}
	$("#" + ItemId).show(); 

	for (keyOther in cells) { 
		if (td != cells[keyOther]) { 
			$c = document.getElementById(cells[keyOther]); 
			if ($c.style.backgroundColor = '#ffffff') { 
				$c.style.backgroundColor = '#EAF6FD'; 
			} 
		} 
	}
	$td1 = document.getElementById(td); 
	$td1.style.backgroundColor = '#ffffff'; 

}
