function ampliar_imagen(imagen,ancho,alto) {
	w_amp=window.open('','','width='+ancho+', height='+alto);
	w_amp.document.write('<html><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0"><img src="'+imagen+'"></body></html>');
	if (window.focus) {w_amp.focus()}
}