var companyName;
//var currency;
	
function initialise()
{
	//var xmldoc = document.all("sitedataXML").XMLDocument;
	//var c = xmldoc.getElementsByTagName("CURRENCY").item(0).firstChild.nodeValue;
	
	switch(currency) {
		case "Sterling": 	currency = "£";
							break;
		case "US Dollar":	currency = "$";
							break;
		case "CA Dollar":	currency = "CA $";
							break;
	}
	
	//companyName = xmldoc.getElementsByTagName("COMPANY_NAME").item(0).firstChild.nodeValue;
}

function displayFooter(company)
{
	document.write("<span class='footer'>Copyright &#169; 2004 " + company + ". All Rights Reserved.<br>");
	document.write("Site designed &amp; developed by <a href='javascript:openNewWindow(\"http://mumfordconnect.com\",\"RDPWebDesign\");' onMouseOver='window.status=\"\"; return true;'>Mumford Connect Web Design</a>.</span>");
}


function openNewWindow(url,title)
{
	remote = window.open (url, title) 
}