function showNhide()
{
    var myLink = document.getElementById('showMore')
    var myElement = document.getElementById('moreDiv')
    
    // if the radio buttns are not visible, make them visible and change the text of the link
    if (myElement.style.display=="none")
    {
            myElement.style.display = "block"
            myLink.innerHTML = "Less Information"
    }
    // if the radio buttons are visible, hide them and change the text of the link
    // also, deselect any selected radio buttons
    else
    {
            myElement.style.display = "none"
            myLink.innerHTML = "More Information"
    }
}

function changeCursor1()
{
    var myLink = document.getElementById('showMore')
	myLink.style.cursor = 'pointer'
}

function changeCursor2()
{
    var myLink = document.getElementById('showMore')
	myLink.style.cursor = 'auto'
}

/* 9080-13C
<p>ErgoWave® Roller Massage Table Features Three.   Accessories  Including Leg Bolster, Head Pillow and Nose Hole Option.  Call For Colors and  Shipping Charges.  Mfr. 9080,87896, 88152, 67149</p>    <a id="showMore" style="color:#0000FF; text-decoration:underline;" onClick="showNhide()" onmouseover="changeCursor1()" onmouseout="changeCursor2()">More Information</a>    <div id="moreDiv" style="display:none">  <p>Unique Wave Action: The ErgoWave pattern travels up the  spine like a wave.  All areas of the patient’s spine are covered with three  independent rollers repeating every 3 seconds.  </p>    <p>Triple Rollers:  The rollers are mounted on three axles to  isolate lumbar and thoracic regions.  </p>    <p>Gas Spring Quick Height Adjustments</p>    <p>Sleek European lines for contemporary design</p>    <p>Ultra quiet operation with high quality motor is nearly  silent</p>    <p>Storage shelf included</p>    <p>Steel construction.</p>    <p>78x25x24&quot;</p></div>
*/