function getThisTime(){
	var now = new Date()

	var year = now.getYear()
	if( (year-1900) < 0 )
		year = year % 100
	if( year < 10 )
		year = '0' + year

	var month = now.getMonth() + 1
	if( month < 10 )
		month = '0' + month
	var today = now.getDate()
	if( today < 10 )
		today = '0' + today
	var theHour = now.getHours()
	if( theHour < 10 )
		theHour = '0' + theHour
	var theMin = now.getMinutes()
	if( theMin < 10 )
		theMin = '0' + theMin
	var thisTime = year + "/" + month + "/" + today  + " " + theHour + ":" + theMin
	return thisTime;
}

function getBrowser(){
	var b = navigator.appName + ' ' + navigator.appVersion
	return b;
}
