function copyrightInfo() {
	var today = new Date();
	var year  = today.getFullYear();

	var copyStr = "Copyright &copy; 1999 - " + year + " <b>Price &middot; Rubin & Partners</b>. All Rights Reserved";
	
	return(copyStr);
}

document.write(copyrightInfo());

