
function amplia(cual, ancho,alto) {
	
		var anchod=((screen.width)/2)-(ancho/2);
		
		var altod=((screen.height-16)/2)-(alto/2);
		
		var w=window.open("",'','resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,width='+ancho+',height='+alto+',screenX='+anchod+',screenY='+altod+',left='+anchod+',top='+altod+'');
		w.document.write("<html><head><body style='margin:0;padding:0'><img src='"+cual+"'></body></html>");
	
}