// JScript File

 function getSonglistHTML() {
    var strHTML = ""
        +   "<table style='table-layout:fixed; border-left:groove 2px #000080;border-top:groove 2px #000080;border-right:groove 2px #000080;border-bottom:groove 2px #000080;' width='100%' cellpadding='4'>"
        +	"	<tr>"
        +	"		<td align='left'>"
        +   "           <b>Solid Ground</b> specializes in <i>Old School</i> dance music originally recorded by artists such as Stevie Wonder, Earth, Wind &amp; Fire, Stylistics, Spinners, O'Jays, Tower Of Power, Commodores, Billy Paul, Ohio Players, George Benson, and many, many more!"
        +	"		</td>"
        +	"	</tr>"
        +	"	<tr>"
        +	"		<td align='left' width='100%'><p><b>Solid Ground's</b> song list includes (but is not limited to):</p>"
        +	"			<div id='divSonglistDetail' style='height:240px; width:100%; border-top:groove 2px #000080; overflow-x:hidden; overflow-y:scroll;'></div>"
        +	"		</td>"
        +	"	</tr>"
        +	"</table>";
            
    return strHTML;
}
        
