function esimpar(n)
{
   return ((n-1)%2);
}

function marcartodo(chkb)
{
	for (i = 0; i < chkb.length; i++)
		chkb[i].checked = true;

	for (i = 0; i < chkb.length; i++) {
		padre = chkb[i].parentNode.parentNode.parentNode.parentNode
		td0 = padre.getElementsByTagName('td')[0]
		td1 = padre.getElementsByTagName('td')[1]
		if (td0.className == 'fondocomentadmin') {
			td0.className = 'fondocomentadminmarcado';
			td1.className = 'fondocomentadminmarcado';
		} else if (td0.className == 'fondocomentadminmarcado') {
			td0.className = 'fondocomentadminmarcado';
			td1.className = 'fondocomentadminmarcado';
		} else {
			td0.className = 'fondocoment3';
			td1.className = 'fondocoment3';
		}
	}
}

function desmarcartodo(chkb)
{
for (i = 0; i < chkb.length; i++)
	chkb[i].checked = false ;

	for (i = 0; i < chkb.length; i++) {
		padre = chkb[i].parentNode.parentNode.parentNode.parentNode
		td0 = padre.getElementsByTagName('td')[0]
		td1 = padre.getElementsByTagName('td')[1]
		if (td0.className == 'fondocomentadminmarcado') {
			td0.className = 'fondocomentadmin';
			td1.className = 'fondocomentadmin';
		} else if (td0.className == 'fondocomentadmin') {
			td0.className = 'fondocomentadmin';
			td1.className = 'fondocomentadmin';
		} else {
			if (esimpar(i) == 0) {
				td0.className='fondocoment1';
				td1.className='fondocoment2';
			} else {
				td0.className='fondocoment2';
				td1.className='fondocoment1';
			}
		}
	}
}

function marcarcoment(num) {

	marcador = document.getElementsByName('delete')[num]
	padre = marcador.parentNode.parentNode.parentNode.parentNode
	td0 = padre.getElementsByTagName('td')[0]
	td1 = padre.getElementsByTagName('td')[1]
	if (marcador.checked) {
		if (td0.className == 'fondocomentadmin') {
			td0.className = 'fondocomentadminmarcado';
			td1.className = 'fondocomentadminmarcado';
		} else {
			td0.className = 'fondocoment3';
			td1.className = 'fondocoment3';
		}
	} else {
		if (td0.className == 'fondocomentadminmarcado') {
			td0.className = 'fondocomentadmin';
			td1.className = 'fondocomentadmin';
		} else {
			if (esimpar(num) == 0) {
				td0.className='fondocoment1';
				td1.className='fondocoment2';
			} else {
					td0.className='fondocoment2';
					td1.className='fondocoment1';
			}
		}
	}
}

function marcarfoto(num) {

	marcador = document.getElementsByName('delete')[num]
	padre = marcador.parentNode.parentNode.parentNode.parentNode.parentNode
	foto = 	padre.getElementsByTagName('img')[0]

	if (marcador.checked) {
		padre.className = 'ALBfondo2';
		foto.className = "ALBfotomarc";
	} else {
			padre.className='ALBfondo1';
			foto.className = "ALBfotodesmarc";
		}
}

function marcartodofotos(chkb)
{
	for (i = 0; i < chkb.length; i++) {
		chkb[i].checked = true;
	}


	for (i = 0; i < chkb.length; i++) {
	padre = chkb[i].parentNode.parentNode.parentNode.parentNode.parentNode
	foto = padre.getElementsByTagName('img')[0]
	padre.className = 'ALBfondo2';
	foto.className = "ALBfotomarc";
	}
}

function desmarcartodofotos(chkb)
{
	for (i = 0; i < chkb.length; i++) {
		chkb[i].checked = false;
	}


	for (i = 0; i < chkb.length; i++) {
	padre = chkb[i].parentNode.parentNode.parentNode.parentNode.parentNode
	foto = padre.getElementsByTagName('img')[0]
	padre.className = 'ALBfondo1';
	foto.className = "ALBfotodesmarc";
	}
}