function ProcessGetDateTimeSerial()
{
	now = new Date;
	var str="";
	var year = (now.getFullYear() - 2000);

	if (year < 10)
		str += "0" + year;
	else
		str += year;

	var month = now.getMonth() + 1;

	if (month  < 10)
	{
		str += "0" + month;
	}
	else
	{
		str += month;
	}	

	if (now.getDate()  < 10)
	{
		str += "0" + now.getDate();
	}
	else
	{
		str += now.getDate();
	}	

	if (now.getHours()  < 10)
	{
		str += "0" + now.getHours();
	}
	else
	{
		str += now.getHours();
	}	

	if (now.getMinutes()  < 10)
	{
		str += "0" + now.getMinutes();
	}
	else
	{
		str += now.getMinutes();
	}

	if (now.getSeconds()  < 10)
	{
		str += "0" + now.getSeconds();
	}
	else
	{
		str += now.getSeconds();
	}	

	return str;
}

