function getTimestamp(){var d=new Date();var year=d.getYear();if(year<2000)
year=year+1900;month=d.getMonth()+1;if(month<10)
month="0"+month;var date=d.getDate();if(date<10)
date="0"+date;var hour=d.getHours();if(hour<10)
hour="0"+hour;var minute=d.getMinutes();if(minute<10)
minute="0"+minute;var second=d.getSeconds();if(second<10)
second="0"+second;return year+month+date+hour+minute+second;}