
function abrir_carga(){
	document.getElementById("carga").style.display = "block";
	return
}
function cerrar_carga(){
	document.getElementById("carga").style.display = "none";
	return
}
function publicar(id, valor){
	if(valor==true){
		val = 1
		document.getElementById("publicar"+id).style.background="#00FF00"
	}else{
		val = 0
	    document.getElementById("publicar"+id).style.background="#ffffff"
	}
	
	petision('publicar.php', 'carga_publicar', 'POST', 'id='+id+'&val='+val)
	return
}

function eliminarFoto(id){
	var conf = confirm("Estas seguro de eliminar esa foto");
	
	if(conf){
		form_evento.target = "subiendo";
		form_evento.action = "eliminar_foto.php?id=" + id;
		form_evento.submit();
		
	}

}
function subirFoto(){

	document.getElementById("carga_foto").style.display = "inline";

	form_evento.target = "subiendo";
	form_evento.action = "subir_foto.php";
	form_evento.submit();
	form_evento.submit();

	return
	
}
function redir(){
	
	document.location.href = "index.php?pag=listaEvento.php";
	}
