/* get date and catch year */
var date = new Date();
var yyy = date.getYear();
var yearso = (yyy < 1000) ? yyy + 1900 : yyy;
