// JScript source code
function writeChemMenu(obj){
var s = ""
s = s +'<A href="index.htm" id = "c1">Summary</A><br>'
s = s + '<A href="deckdescription.htm" id = "c2">Deck Description</A><br>'
s = s + '<A href="carddescription.htm" id = "c3">Card Description</A><br>'
s = s + '<A href="gameideas.htm" id = "c4">Game Ideas</A><br>'
s = s + '<A href="fish.htm" id = "c6">Fish</A><br>'
s = s + '<A href="rummy.htm" id = "c7">Rummy</A><br>'
s = s + '<A href="poker.htm" id = "c8">Poker</A><br><br>'
s = s + "<A href='itselemental.htm' id = 'c5'>It's Elemental</A><br>"

//s = s + '<A href="onlineSort.htm" id = "c9">Online Sort Game</A><br>'
s = s + "<br><br><div style='font-size:7pt;font-family:verdana; text-align:left; padding-left:5; padding-right:5'>Additional game ideas and online games will be added. Click the link above to try the online game<br> <font color = orange>It's Elemental</font></div>"
document.write(s)
var x = eval(obj)
x.style.backgroundColor = "blue"
x.style.color = "silver"

}