var fDesc=new Array(); fDesc[0] = "MIDAS Desktop is a GUI application for synchronizing with a MIDAS server. It allows both anonymous and authenticated access to the data on Web API-enabled MIDAS servers.
MIDAS Desktop uses terminology similar to Git. Resources are pulled or cloned from the server to the client, and stored on the client side in a SQLite database. The client can add local resources to their local repository, and then upload (push) the new resources to the MIDAS server."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }