var fDesc=new Array(); fDesc[0] = "MySQL Snap program is intended for creation backup copies of MySQL databases as well as for transport it from one server to another. The program advantages: - full compatibility of the result dump with the dump produced with the help of standard MySQL database management system utility - mysqldump! - standard mysqldump utility keys support; - absence of using standard libmysql.dll library. All information processing is with using API level functions, thanks to this fact maximum productivity and comfort are reached; - absence of using standard mysqldump utility for dumping; - human-engineered interface and absence of necessity to provide all parameters by hand in command line and also comfortable tables selection; - an opportunity to choose only the necessary tables from a database, which are really essential for dumping."; 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 = ''; } }