// Jade Garden Info functions
var char34 = String.fromCharCode(34);

var FootStr = "<p align=" + char34 + "center" + char34 + "><font face=" + char34 + "Berlin Sans FB Demi" + char34 + ">" + 
	"<a style=" + char34 + "text-decoration : none" + char34 + " href=" + char34 + "index.htm" + char34 + "target=" + char34 + "_top" + char34 + "><font color=" + char34 + "#000080" + char34 + "><b>Home</b></font></a><b> | </b>" +
	"<a style=" + char34 + "text-decoration : none" + char34 + " href=" + char34 + "menuselect.htm" + char34 + "target=" + char34 + "left" + char34 + "><font color=" + char34 + "#000080" + char34 + "><b>Main Menu</b></font></a><b> | </b>" + 
	"<a style=" + char34 + "text-decoration : none" + char34 + " href=" + char34 + "map.htm" + char34 + "target=" + char34 + "rbottom" + char34 + "><font color=" + char34 + "#000080" + char34 + "><b>Map</b></font></a><b> | </b>" +
	"<a style=" + char34 + "text-decoration : none" + char34 + " href=" + char34 + "peking.htm" + char34 + "target=" + char34 + "rbottom" + char34 + "><font color=" + char34 + "#000080" + char34 + "><b>Seasonal Menu</b></font></a><b> | </b>" +
	"<a style=" + char34 + "text-decoration : none" + char34 + " href=" + char34 + "about.htm" + char34 + "target=" + char34 + "rbottom" + char34 + "><font color=" + char34 + "#000080" + char34 + "><b>About Us</b></font></a><b> | </b>" +	
	"<a style=" + char34 + "text-decoration : none" + char34 + " href=" + char34 + "booking.htm" + char34 + "target=" + char34 + "rbottom" + char34 + "><font color=" + char34 + "#000080" + char34 + "><b>Booking</b></font></a>" +
	"</font></p>"

var CopyStr = "<p align=" + char34 + "center" +  char34 + "><font size=" + char34 + "2" + char34 + "color=" + char34 + "#800000" + char34 + "><b>@ Copyright by Zoneast Ltd, London. 2000</b></font></p>"


function ShowJadeFootInfo()
{
	document.write(FootStr);
	document.write(CopyStr);
}

// Update Date functions
var aDay = new Array("Sunday","Monday","Tuseday","Wednesday","Thursday","Friday","Saturday");
var aMonth = new Array("January","February","March","April","May","June","July","August","September","October","November","December");

function ShowUpdate()
{
	var modDate = new Date(document.lastModified);
	var modDay = aDay[modDate.getDay()];
	var modMonth = aMonth[modDate.getMonth()];
	var modYear = modDate.getYear();
	document.write("<p align=" + char34 + "center" + char34 + " class=" + char34 + "blacknote" + char34 + "><font color=" + char34 + "#000080" + char34 + ">Last update on: " + modDay + ", " + modMonth + " " + modDate.getDate() + ", " + modYear + ".</font>");
}
