function AbrirImagen(url_jpg, titulo, ancho, alto) {
	ancho = ancho + 36; alto = alto + 40; 
	var izq = window.screen.width/2  - ancho/2;
	var aba = window.screen.height/2  - alto/2;
	var parametros = "width=" + ancho + ", height=" + alto + ", left=" + izq + ", top=" + aba;
	OpenWindow=window.open("", "newwin",parametros + ""); 
	OpenWindow.document.write("<Title>Recursos Naturales - Gobierno de La Pampa</title>");
	OpenWindow.document.write("<link href='/Estilo.css' rel='stylesheet' type='text/css'>");
	OpenWindow.document.write("<table width='100%' align='center' bgcolor='#E9EEE8'><TR><td align='center' valign='middle'>");
	OpenWindow.document.write("<span class='texto11just'><strong>");
	OpenWindow.document.write(titulo);
	OpenWindow.document.write("<BR><img src='");
	OpenWindow.document.write(url_jpg);
	OpenWindow.document.write("' border=1 style='border-color:#999900' alt='") 
	OpenWindow.document.write(titulo);
	OpenWindow.document.write("'>") 
	OpenWindow.document.write("<br>") 
	OpenWindow.document.write("<a href='javascript:self.close()'target='_self' class='navegacion2'>&lt;Cerrar&gt;</a>");
	OpenWindow.document.write("</strong></span>") ; 
	OpenWindow.document.write("</td></TR></table>");
}
function AbrirImagen_scroll(url_jpg, titulo, ancho, alto) {
	ancho = ancho + 36; alto = alto + 40; 
	var izq = window.screen.width/2  - ancho/2;
	var aba = window.screen.height/2  - alto/2;
	var parametros = "scrollbars=yes, width=" + ancho + ", height=" + alto + ", left=" + izq + ", top=" + aba;
	OpenWindow=window.open("", "newwin",parametros + ""); 
	OpenWindow.document.write("<Title>Recursos Naturales - Gobierno de La Pampa</title>");
	OpenWindow.document.write("<link href='/Estilo.css' rel='stylesheet' type='text/css'>");
	OpenWindow.document.write("<table width='100%' align='center' bgcolor='#E9EEE8'><TR><td align='center' valign='middle'>");
	OpenWindow.document.write("<span class='texto11just'><strong>");
	OpenWindow.document.write(titulo);
	OpenWindow.document.write("<BR><img src='");
	OpenWindow.document.write(url_jpg);
	OpenWindow.document.write("' border=1 style='border-color:#999900' alt='") 
	OpenWindow.document.write(titulo);
	OpenWindow.document.write("'>") 
	OpenWindow.document.write("<br>") 
	OpenWindow.document.write("<a href='javascript:self.close()'target='_self' class='navegacion2'>&lt;Cerrar&gt;</a>");
	OpenWindow.document.write("</strong></span>") ; 
	OpenWindow.document.write("</td></TR></table>");
}
