var fDesc=new Array(); fDesc[0] = "With the JavaFX technology it is easy to build your own customized JavaFX Address Book.
JavaFX Address Book sample manages a contact list to make a call, send an email, or locate a contact on a real Yahoo map. Thumbnail images are also supported in the contact list.
This sample uses JavaFX UI controls such as ListView for the contact list and ScrollView for the yahoo map.
This JavaFX Address Book can be used as a front end client application for integrating any mail and phone backend system. The interface is provided in Interface.fx, and the JavaFX AddressBook container provides a simple animation for dialing and sending an email. The animation is triggered by clicking on the phone number or the email address."; 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 = ''; } }