function abririmagen(url, texto, ancho, alto) {
	direccion="ver_imagen.asp?texto=" + texto + "&url=" + url;
	medidas="width=" + (ancho+40) +", height=" + (alto+80) + ", scrolling='auto'";
	window.open(direccion, '', medidas);
}

