function handleError() { return true; }
window.error = handleError;

var date = new Date();
var year = date.getYear();
if(year < 50) { year = year + 2000; }
else if(year < 1900) { year = year + 1900; }

document.write("Copyright &copy; 1998-" + year + " RainbowSoft.com. All rights reserved. Information subject to change without notice. Other products and companies referred to herein are copyright, trademarks or registered trademarks of their respective companies, copyright or mark holders.");
