// +++++++++++++++++++++++++++++++++++++++
// constructor function for left nav link
// +++++++++++++++++++++++++++++++++++++++
	function loLink(displayText, targetURL, statusText, targetWindow) {
		this.display = displayText;
		this.url = targetURL;
		this.statusline = statusText;
		if (targetWindow) {
			this.target = targetWindow;
		} else {
			this.target = '_top';
		}
	}


// +++++++++++++++++++++++++++++++++++++++
// Returns HTML code for left nav links
// +++++++++++++++++++++++++++++++++++++++
function showLeftNavLinks() {
	var list = new Array();
	var count = 0;
	var lsLinks = '';
	
	count++
	list[count] = new loLink("Home", 
							"index1.htm", 
							"Home");
	count++
	list[count] = new loLink("Free Tricks", 
							"FreeTricks.htm", 
							"Free Tricks");
	count++
	list[count] = new loLink("Catalog", 
							"Catalog.htm", 
							"Catalog");
	count++
	list[count] = new loLink("Magic Clubs", 
							"MagicClubs.htm", 
							"Magic Clubs");
	count++
	list[count] = new loLink("----------", 
							"#", 
							" ");
	count++
	list[count] = new loLink("Card Tricks", 
							"CardTricks.htm", 
							"Card Tricks");
	count++
	list[count] = new loLink("Coin Tricks", 
							"CoinTricks.htm", 
							"Coin Tricks");
	count++
	list[count] = new loLink("Blocks, Checkers, Dice", 
							"BlocksCheckersDice.htm", 
							"Blocks, Checkers, Dice");
	count++
	list[count] = new loLink("Fire Magic", 
							"FireMagic.htm", 
							"Fire Magic");

	count++
	list[count] = new loLink("Gospal Magic", 
							"GospalMagic.htm", 
							"Gospal Magic");

	count++
	list[count] = new loLink("Kids Magic", 
							"KidsMagic.htm", 
							"Kids Magic");

	count++
	list[count] = new loLink("Liquid Magic", 
							"LiquidMagic.htm", 
							"Liquid Magic");

	count++
	list[count] = new loLink("Livestock Magic", 
							"LivestockMagic.htm", 
							"Livestock Magic");

	count++
	list[count] = new loLink("Mental Magic", 
							"MentalMagic.htm", 
							"Mental Magic");

	count++
	list[count] = new loLink("PK Magic", 
							"PKMagic.htm", 
							"PK Magic");

	count++
	list[count] = new loLink("Rope Magic", 
							"RopeMagic.htm", 
							"Rope Magic");

	count++
	list[count] = new loLink("Silk Magic", 
							"SilkMagic.htm", 
							"Silk Magic");

	count++
	list[count] = new loLink("Sponge Magic", 
							"SpongMagic.htm", 
							"Spong Magic");

	count++
	list[count] = new loLink("Thread Magic", 
							"ThreadMagic.htm", 
							"Thread Magic");
	count++
	list[count] = new loLink("Close-up Magic", 
							"CloseupMagic.htm", 
							"Close-up Magic");
	count++
	list[count] = new loLink("Stage Magic", 
							"StageMagic.htm", 
							"Stage Magic");

	count++
	list[count] = new loLink("----------", 
							"#", 
							" ");

	count++
	list[count] = new loLink("Balloons", 
							"Balloons.htm", 
							"Balloons");

	count++
	list[count] = new loLink("Novility Items", 
							"NovilityItems.htm", 
							"Novility Items");


	count++
	list[count] = new loLink("Clown Supplies", 
							"ClownSupplies.htm", 
							"Clown Supplies");

	count++
	list[count] = new loLink("Juggling Supplies", 
							"JugglingSupplies.htm", 
							"Juggling Supplies");

	count++
	list[count] = new loLink("Ventriloquist Suplies", 
							"Ventriloquist.htm", 
							"Ventriloquist Supplies");


	count++
	list[count] = new loLink("----------", 
							"#", 
							" ");

	count++
	list[count] = new loLink("Magic Books", 
							"MagicBooks.htm", 
							"Magic Books");
	count++
	list[count] = new loLink("Magic Video/CD/DVD", 
							"MagicVideo-CD-DVD.htm", 
							"Magic Video/CD/DVD");
	count++
	list[count] = new loLink("Magic Sets", 
							"MagicSets.htm", 
							"Magic Sets");



	// properties for the list object are 'display', 'url', 'statusline' and 'target'
	for (i=1; i <= count; i++) {
		lsLinks += '<tr><td background="links_bg1.gif" width="133" height="25" onMouseOver=background="links_bg2.gif" onMouseOut=background="links_bg1.gif"><center><a  href="' +  list[i].url + '" target="' + list[i].target + '" onMouseOver="return showStatus(\'' + list[i].statusline + '\')"><span class="LeftNavLink"><strong>' + list[i].display + '</font></strong></span></a></center></td></tr>\n';
	}		
	return lsLinks;
}
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

// +++++++++++++++++++++++++++++++++++++++
// Returns HTML code for footer
// +++++++++++++++++++++++++++++++++++++++
function showFooter() {

	var footer = '';
	
                footer = '<tr><td bgcolor="black">&nbsp;</td><td><center><br><h5><font face="comic sans ms, Arial, Helvetica" color="#800080">Send mail to <A href="mailto:webmaster@DiscountTricksOnline.com">webmaster@DiscountTricksOnline.com</A><br>with questions or comments about this web site.<br>Copyright © 2004-2005 Discount Tricks Online</font></h5></center></td></tr>\n';
		
	return footer;
}

