var fDesc=new Array(); fDesc[0] = "Network SpeedCard is a very simple dual-player card game that is played over a LAN, or peer-to-peer linked pair of PCs that have the TCP/IP protocol configured. The game can also be played over the Internet but given that speed is of the essence, network lag may give the player hosting the game an unfair advantage. The object of Network SpeedCard is to get rid of your cards as quickly as possible – that is more quickly than your opponent.
At the beginning of the game, the program deals fives stacks of cards to each player - only the top card in each stack is facing up. You get rid of our cards by moving them onto either of the two play cards in the centre of the table. The rule for moving cards onto the play cards is simple: your card must either be one higher or one lower than the card on top of the play stack - the suits of the cards have no significance. For example: if one (of the two) play cards was a five, you could move a four or a six onto it. Note that an Ace can be placed on a King and vice versa. Once a card has been moved from one of your stacks to one of the central play cards, the next card on your stack is turned over. If you have gotten rid of all of the cards in one of your stacks, you are able to transfer one of the top cards from another stack into that blank position - in that way you get to reveal the next card in that stack and the maximum five possible cards will be visible and ready to be gotten rid of when the opportunity arises. There may be instances were neither player is able to make a move; in that case the program will initiate a countdown. On zero, the program will flip cards from the two stacks on either side of the central play cards. The race then recommences."; 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 = ''; } }