function openFileSite(URL){
		// cerramos la pantalla de inicio
		self.close();
		// abrimos el sitio de File
		var ancho = screen.availWidth - 10;
		var alto = screen.availHeight - 60;
		opt = "top=0,left=0,width=" + ancho + ",height=" + alto + ",tollbar=no,scrollbars=yes,status=yes,directories=no,menubar=no,resizable=yes";
		window.open(URL, '_blank', opt, true).focus();
}

