function openWindow2(ficha,ancho,alto,ruta) 
	{
		ventana = window.open(ruta,ficha,"scrollbars=no,toolbar=no,location=no,directories=no,status=no,resizable=no,copyhistory=no,width="+ancho+",height="+alto+",top=25,left=25");
		ventana.focus();
		document.returnValue = false;
	}
