<!--

// /////////////////////////////////////////////////
// insert browser date time string into named form f
// /////////////////////////////////////////////////
function main(f)
{
	var bdt = get_browser_date_time();
	//alert("bdt=["+bdt+"]");
	f.dtLocal.value = bdt;
}

// ///////////////////////////////////////////////////
// return the date and time of the local computer
// (the human using the web browser on their computer)
// return format: yyyy-mm-dd hh-mm
// ///////////////////////////////////////////////////
function get_browser_date_time()
{
	var d, local_day, local_month, local_year, bdt;
	
	d = new Date();

	local_day = d.getDate();
	local_month = d.getMonth() + 1;
	local_year = d.getFullYear();
	local_hour = d.getHours();
	local_minute = d.getMinutes();

	bdt = local_year + '-' + local_month + '-' + local_day;
	bdt += ' ' + local_hour + ':' + local_minute;
	
	//alert("bdt=["+bdt+"]");
	
	return bdt;
}

//-->
