// Copyright

function Copy(){
copyrightY       = new Date();
copyrightYear    = copyrightY.getYear();
copyrightYear4   = (copyrightYear < 2000) ? copyrightYear+1900 : copyrightYear;
document.write('Copyright (C) 1999-');
document.write( copyrightYear4 );
document.write(' Seiko Instruments Inc. All Rights Reserved.');
}

