// flipper js function to store and load flip card data
   title='Internet Terms'
function loadcards(){
   cards= new Array;
   cardsback= new Array;
   cardno=-1 //cardnumber
   maxcards=4;

   cards[0]='xhtml';
   cardsback[0]='<b>xhtml</b><br />Extensible Hypertext Markup language developed by the World Wide Web Consortium.<br />It is the reformating of html as an xml language.';
   cards[1]='css'
   cardsback[1]='<b>CSS</b><br />Cascading Style Sheets developed by the World Wide Web Consortium.<br />It was designed to provide the presentation of content.';
   cards[2]='DOM'
   cardsback[2]='<b>DOM</b><br />Document Object Model represents the structure of a web page<br />. It is a tree like that can be accessed programatically.';
   cards[3]='Javascript'
   cardsback[3]='<b>Javascript</b><br />Javascript allows Behaviours to be added to web pages.<br />Also officially known as ecmascript and jscript (Microsoft\s name).<br /> It allows web pages to be made interactive.';
}
