//alert();
function irA(pagina)
{
		//document.forms.formulario.elements.paginaActual.selectedIndex = (pagina-1);
		document.forms.formulario.paginaActual.value = pagina;
		document.forms.formulario.submit();
}

function popup(htmlfile, nombre, wndWidth, wndHeight, rs, st) {
	var popWnd; //Objeto ventana de popup
	var maxWidth = screen.width-10;
	var maxHeight = screen.height-56;
	
	//Preprocesado de parámetros
	if (wndHeight==0) wndHeight = maxHeight;
	if (wndWidth==0) wndWidth = maxWidth;
	
	//Calculo de la posición para centrar la ventana
	var posX = maxWidth/2 - wndWidth/2;
	var posY = maxHeight/2 - wndHeight/2;
	
	if (popWnd) { 
		popWnd.close();
	}

	popWnd = open(htmlfile, nombre, 'resizable='+rs+',toolbar=0,scrollbars=no,location=0,directories=0,status='+st+',menubar=0,width='+wndWidth+',height='+wndHeight+',screenX=0,screenY=0,left='+posX+',top='+posY);

	//this.blur();
	popWnd.focus();
}

function cImagen(id) {
		document.getElementById("imgbig").src = "img/arteypatri/" + id + ".jpg"
}

