// JavaScript Document
function CopyRight(){
	var mydate=new Date()
	var year=mydate.getYear()
	if (year < 2000) year = 1900 + year;
    var cRight = "Copyright " + year + " | Information deemed reliable, but not guaranteed. | " 
	cRight = cRight + "<a href='http://www.virtualvista.net' target='_blank'>Created by Virtual Vista real Estate Marketing</a>"
	
	return(cRight)
}