var year = getYear();

function copyright(){
	str = 'Copyright &copy; 1996-'+year+ ' Marketing Junction Inc. All rights reserved.';
	document.write(str);
}

function getYear(){
	d = new Date();
	return d.getFullYear();
}

