function Seccion(seccion){	

    location.href= 'index.php?Opcion=' + seccion;	
 
}

function AbrirVentana(Url,NombreVentana,width,height,extras) {
	var largo = width;
	var altura = height;
	var adicionales= extras;
	var top = (screen.height-altura)/2;
	var izquierda = (screen.width-largo)/2; nuevaVentana=window.open(''+ Url + '',''+ NombreVentana + '','width=' + largo + ',height=' + altura + ',top=' + top + ',left=' + izquierda + ',features=' + adicionales + '');
nuevaVentana.focus();
}

function AvisoLegal(url,ancho,alto) { 
  	var posicion_x;
	var posicion_y;
	posicion_x=(screen.width/2)-(ancho/2);
	posicion_y=(screen.height/2)-(alto/2);
	window.open(url, "leonpurpura.com", "width="+ancho+",height="+alto+",menubar=0,toolbar=0,directories=0,scrollbars=yes,resizable=no,left="+posicion_x+",top="+posicion_y+"");
}