// JavaScript Document
function CopyRight(){
	var mydate=new Date()
	var year=mydate.getYear()
	if (year < 2000) year = 1900 + year;
    var cRight = "Copyright " + year + " - riccas web designs, a division of FormsTech Inc."
	
	return(cRight)
}
