var fDesc=new Array(); fDesc[0] = "Enter the odds in one format to see the equivalent in the other two formats. Convert between fractional odds, decimal odds and American money lines. Enter a value for a given type of odds. For the money line, enter negative numbers for favorites and positive numbers for underdogs. Then press the Convert it button. The odds for each type will be calculated and displayed.
Really comfortable for usage with beautiful user friendly interface."; 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 = ''; } }