	today = new Date()	;
	dd	= 	today.getDate()		;
	mm	=	today.getMonth()	;
	yy	=	today.getYear()		;
	mm	= 	mm+1 			;
	date1	=dd+'.'+mm+"."+yy		;	
	document.write(date1)	;

