var fDesc=new Array(); fDesc[0] = "The reservation system Rezys is a program to manage the reservation of rooms in pensions, hotels and any kind of accommodation houses. It is easy for use through its very friendly user interface. The receptionist can create reservations by using a simple mouse dragging. The new rooms, new customers, authorization access and given/returned key features are also available.

The application is used for : small and bigger pensions, apartments, motels, hotels, cottages, spa, accommodation and others."; 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 = ''; } }