function choiximg(idAdr, cur, x){

	var i=parseInt(eval("document.getElementById('cur" + idAdr + "').value;"));

	if (cur != i){
		
		/*alert("cur : " + cur + " - i : " + i + " - idAdr : " + idAdr);*/
			
		eval ("document.getElementById('cur" + idAdr + "').value = " + cur + ";");
		
		eval ("document.getElementById('" + idAdr + "_" + i + "').style.display = 'none';");
		eval ("document.getElementById('" + idAdr + "_" + cur + "').style.display = 'block';");
		
		eval ("document.getElementById('mini_" + idAdr + "_" + i + "').style.border = 'none';");
		eval ("document.getElementById('mini_" + idAdr + "_" + cur + "').style.border = 'solid #771429 1px';");
		
		if (x==1){
		
			eval ("document.getElementById('txt" + idAdr + "_" + i + "').style.display = 'none';");
			eval ("document.getElementById('txt" + idAdr + "_" + cur + "').style.display = 'block';");
		
		}
			
	}

}
