function desplegar(objeto)
{
	var seccion = objeto.nextSibling;
	if(seccion.className != 'seccion-oculta')
		seccion = seccion.nextSibling;
	var plegado = (seccion.style.display != 'block');
	seccion.style.display = plegado ? 'block' : 'none';
	objeto.style.backgroundImage = plegado ? 'url(imagenes/plegar.png)' : 'url(imagenes/desplegar.png)';
}



function desplegar2(objeto)
{
	var seccion = objeto.nextSibling;
	if(seccion.className != 'seccion-oculta-voip')
		seccion = seccion.nextSibling;
	var plegado = (seccion.style.display != 'block');
	seccion.style.display = plegado ? 'block' : 'none';
}


function setMonthsAhead(months) {
	var hoy = new Date();
	var futuro = new Date(hoy.getFullYear(), hoy.getMonth()+months, hoy.getDate());
	document.getElementById('expirydate').value = futuro.print("%Y-%m-%d");
}
