
var old_ASIN = '';

function ItemDisplay(ASIN) {
//	alert( ASIN+'_CS' );
//	alert( document.all(ASIN+'_CS') );
	if(document.all) {
		document.all(ASIN).style.display='block';
		if (document.all(ASIN+'_CS')) {
			document.all(ASIN+'_CS').style.display='block';
		}
		if (document.all(ASIN+'_ES')) {
			document.all(ASIN+'_ES').style.display='block';
		}
		if (old_ASIN != '') {
			document.all(old_ASIN).style.display='none';
			if (document.all(ASIN+'_CS')) {
				document.all(old_ASIN+'_CS').style.display='none';
			}
			if (document.all(ASIN+'_ES')) {
				document.all(old_ASIN+'_ES').style.display='none';
			}
		}
	} else if (document.getElementById) {
		document.getElementById(ASIN).style.display='block';
		if (document.all(ASIN+'_CS')) {
			document.getElementById(ASIN+'_CS').style.display='block';
		}
		if (document.all(ASIN+'_ES')) {
			document.getElementById(ASIN+'_ES').style.display='block';
		}
		if (old_ASIN != '') {
			document.getElementById(old_ASIN).style.display='none';
			if (document.all(ASIN+'_CS')) {
				document.getElementById(old_ASIN+'_CS').style.display='none';
			}
			if (document.all(ASIN+'_ES')) {
				document.getElementById(old_ASIN+'_ES').style.display='none';
			}
		}
	}
	
	old_ASIN = ASIN;
	
}
