// JavaScript Document
function popupWindow(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
}
function ventanaDetalle(eventoId) {
	window.open('detalleEvento.php?evento='+eventoId,'Detalle del Evento','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=400,height=300,screenX=150,screenY=150,top=150,left=150')
}
function ventanaSugerirEvento() {
	window.open('sugerirEvento_Form.php','Sugerir Evento','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=470,height=370,screenX=150,screenY=150,top=150,left=150')

}
function ventanaSugerirFoto() {
	window.open('sugerirFotoProd_Form.php','Sugerir Evento','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=470,height=220,screenX=150,screenY=150,top=150,left=150')

}
function ventanaSugerirRecordatorio() {
	window.open('sugerirRecordatorio_Form.php','Sugerir Recordatorio','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=470,height=170,screenX=150,screenY=150,top=150,left=150')

}


function subirArchivo(boton, forma) {
			<!--Abrimos venana con mensaje de subiendo-->
			uploading = window.open('../admin/procesando.html','Uploading','toolbar=0,location=no,directories=0,status=0,resizable=no,scrollbars=no,width=400,height=100');
			boton.disabled=true;
			forma.submit();
			uploading.focus();
		}

function cerrarVentana() {
	if(!uploading.closed) {
		uploading.close();
	}
}

//Codigo para menu desplegable
function expand(thistag){
   contraeTodos();
   styleObj=document.getElementById(thistag).style;
   if(styleObj.display=='none'){
	   styleObj.display='';
	} else {
	   styleObj.display='none';
	}
}
function contraeTodos() {
	document.getElementById('submenu1').style.display = 'none';
	document.getElementById('submenu2').style.display = 'none';
	document.getElementById('submenu3').style.display = 'none';
	document.getElementById('submenu4').style.display = 'none';
	document.getElementById('submenu5').style.display = 'none';
	document.getElementById('submenu6').style.display = 'none';
	document.getElementById('submenu7').style.display = 'none';

}
function contraeInicio() {
	contraeTodos();
	document.getElementById('submenu1').style.display = '';
}
// -->

