function getId(id) {
	return document.getElementById(id);
}
function desplegar(chuleta) {
	
	if (navigator.appName == 'Microsoft Internet Explorer') {
		if (getId(chuleta).style.display == 'none') {
			getId(chuleta).style.display = 'block';
		}
		else {
			getId(chuleta).style.display = 'none';
		}
	}
	else {
		if (getId(chuleta).style.display == 'none') {
			getId(chuleta).style.display = 'table-row';
		}
		else {
			getId(chuleta).style.display = 'none';
		}
	}

	for (i = 1; i <= chuleton; i++) {
		if ('tabla' + i != chuleta) {
			getId('tabla' + i).style.display = 'none';
		}
	}
}