// get datefunction printDate(){			currentDate = new Date();			theDate = currentDate.getDate();			theFyear = currentDate.getFullYear();			theMonth = currentDate.getMonth() +1;			document.write(theFyear + '.' + theMonth + '.' + theDate);}
