// JavaScript Document

function CopyRight(){
            var mydate=new Date()
            var year=mydate.getYear()
            if (year < 2000) year = 1900 + year;
    			var cRight = "Copyright " + year + " - Skyways Limousines All Rights Reserved."
            	cRight = cRight + "&nbsp;|&nbsp;<a href='http://www.VirtualvistaBiz.com' target='_blank'>Created by Virtual Vista Biz</a>"
			return(cRight)

}

