function verificarGaleria()
{
	var f = document.getElementById('form_galeria');
	var titulo = document.getElementById('titulo').value;
	var texto = document.getElementById('texto').value;
	if ((titulo == "") || (texto == ""))
		alert("Al menos el titulo y el texto deben estar completos");
	else
		f.submit();
}

function mostrarImagenes(){
	var i;
	var titulo = 'tituloImagen';
	var ruta = 'rutaImagen';
	var incremento = 1;
	for (i=1;i <= 15;i++)
	{
		document.getElementById(titulo+incremento).disabled = false;
		document.getElementById(ruta+incremento).disabled = false;
		incremento++;
	}
	titulo = 'tituloVideo';
	ruta = 'rutaVideo';
	incremento = 1;
	for (i=1;i <= 15;i++)
	{
		document.getElementById(titulo+incremento).disabled = true;
		document.getElementById(ruta+incremento).disabled = true;
		incremento++;
	}
	document.getElementById('divV').className = 'cont cont_unselected';
	document.getElementById('divI').className = 'cont';
}

function mostrarVideo(){
	var i;
	var titulo = 'tituloImagen';
	var ruta = 'rutaImagen';
	var incremento = 1;
	for (i=1;i <= 15;i++)
	{
		document.getElementById(titulo+incremento).disabled = true;
		document.getElementById(ruta+incremento).disabled = true;
		incremento++;
	}
	titulo = 'tituloVideo';
	ruta = 'rutaVideo';
	incremento = 1;
	for (i=1;i <= 15;i++)
	{
		document.getElementById(titulo+incremento).disabled = false;
		document.getElementById(ruta+incremento).disabled = false;
		incremento++;
	}
	document.getElementById('divI').className = 'cont cont_unselected';
	document.getElementById('divV').className = 'cont';
}

