// JavaScript Document
var fulcrum = {
    CompanyName: "Fulcrum Media Inc.",
    MaillingAddress: "508 Lawrence Avenue West Suite 201",
	MaillingCity: "Toronto",
	MaillingProvince: "Ontario",
	PostalCode: "M6A 1A1",
	Phone: "416-504-0504",
	Fax: "416-256-3002",
	TollFree: "1-866-688-0504",
	CurrentYear: "2009",
	
	getCopyrightInfo:function(){
		return 	'Copyright &copy; '+ this.CurrentYear +', ' + this.CompanyName +' All rights reserved.';
	},
	
	getMaillingAddress:function(){
		return this.MaillingAddress+', '+this.MaillingCity+', '+this.MaillingProvince+', '+this.PostalCode;	
	},
	
	getDisclaimer:function(){
		return 'All of the statistics, logos, and product images provided on '+location.host+' are protected by copyright and other applicable laws, treaties, and/or conventions.';
		
	},
	
	getPhone:function(){
		return this.Phone;
	},
	
	getFax:function(){
		return this.Fax;	
	},
	
	getTollFreeNumber:function(){
		return this.TollFree;
	},
	
	printCompanyName:function(){
		document.write(this.CompanyName);	
	},
	
	printCopyrightInfo:function(){
		document.write(this.getCopyrightInfo());
	},
	
	printMaillingAddress:function(){
		document.write(this.getMaillingAddress());
	},
	
	printDisclaimer:function(){
		document.write(this.getDisclaimer());
	}	
}