var fDesc=new Array(); fDesc[0] = "SiteMech Database Manager is a part of SiteMech Web Development Framework. This is a small and useful tool for backup and exchange data between Microsoft SQL Server and MySQL databases. It allows to export entire database or particular tables to XML file. Later you can import saved file to a local or remote database. The software allows direct data transfer between MSSQL and MySQL databases. SiteMech Database Manager supports database connection string favorites allowing to reconnect to often used databases quickly. For MSSQL database, binary full-database backup is supported"; 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 = ''; } }