	function openSecc(i)
	{
		document.location = 'seccion.asp?secc=' + i;
	}
	
	function OpenWindow(url, w, h)
	{
		var l = parseInt((screen.width - w)/2);
		var t = parseInt((screen.height - h)/2);
		var n = parseInt(Math.random() * 1000);
		var nw = window.open(url, "NewWindow" + n, "width=" + w + "px,height=" + h + "px,left=" + l + "px,top=" + t + "px");
	}
	
	function openCopyAvisoPolitica(tipo)
	{
		switch(tipo)
		{
			case 'A':
				OpenWindow("popup.asp?type=" + tipo, 390, 480);
				break;
			case 'C':
				OpenWindow("popup.asp?type=" + tipo, 390, 480);
				break;
			case 'P':
				OpenWindow("popup.asp?type=" + tipo, 390, 480);
				break;
		}
	}