//SCRIPT EXTERNO solo queda aņadir <script src="zoom.js"> y su etiqueta de cierre </scr...
var imagen=null;
var zoom=null;
var alto=0;
var ancho=0;

function AbreZoom(imagen1,ancho1, alto1)
{
	if(alto!=alto1 && ancho!=ancho1 && alto!=0 && ancho!=0){
	  imagen=imagen1;
	  ancho=ancho1;
	  alto=alto1;
	
	  window.zoom.close();
	  zoom=open("zoom.htm","zoom","top=0,left=0,resizable=yes,width="+ancho+",height="+alto);
	  window.zoom.focus();
	}//de if
	else{
	  imagen=imagen1;
	  ancho=ancho1;
	  alto=alto1;
	
	  zoom=open("zoom.htm","zoom","top=0,left=0,resizable=yes,width="+ancho+",height="+alto);
	  window.zoom.focus();
	}// de else
}//de function AbreZoom


