function plantillaimprime(id, idioma)
{
window.open("imprimir.php?idnoticia=" + id + "&lang=" + idioma,'titulo','toolbar=no,location=no,width=593,height=440,scrollbars=yes,resizable=no')
}

function vermapas(ruta)
{
window.open(ruta,'titulo','toolbar=no,location=no,scrollbars=no,width=550,height=400,resizable=no')
}

function verfoto(nombre,titulo)
{
ventana=window.open('','ventana','toolbar=no,location=no,scrollbars=no,resizable=no')
ventana.document.write('<html><head><title>' + titulo + '</title></head><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" scroll="no"><img src="' + nombre + '" onLoad="opener.redimensionar(this.width, this.height)"></body></html>')
ventana.document.close()
}

function redimensionar(ancho,alto)
{
ventana.resizeTo(ancho+10,alto+29);
ventana.moveTo((screen.width-ancho)/2,(screen.height-alto)/2); //centra la ventana. Eliminar si no se quiere centrar el popup
}