﻿// Script to automatically update the copyright year


var current=new Date();
var currentyear=current.getYear();
if (currentyear < 1000)
	currentyear+=1900

document.write('&copy 2010 - ' + currentyear + ' PRS, Inc.' + '<br> All rights reserved.');




