function timer() {
	today = new Date();

	sec = today.getSeconds();
	str = p_zero(sec);

	str2 = today.getFullYear() - 2007 + 18 + today.getMonth() + today.getDate();

	str3 = p_zero( today.getHours() );

	str4 = p_zero( today.getMinutes() );

	document.Ftime.Ttime.value = str;
	document.Ftime2.Ttime2.value = str2;
	document.Ftime3.Ttime3.value = str3;
	document.Ftime4.Ttime4.value = str4;

	window.setTimeout("timer()", 1000);
}
function p_zero( x ) {
	y = String(x);
	if(y.length != 2){
		y = "0" + y;
	}
	return(y);
}