function LeadZero(f)
{
	if(f<10){f='0'+f}
	return f;
}

function GetUserDateTime(formtargetx)
{
	today=new Date();

	TodayYear = today.getYear(); if (TodayYear < 2000) TodayYear += 1900;
	
	formtargetx.value = TodayYear+'-'+LeadZero(today.getMonth()+1)+'-'+LeadZero(today.getDate())+' '+LeadZero(today.getHours())+':'+LeadZero(today.getMinutes())+':'+LeadZero(today.getSeconds());
}

function SelectAll(formtargetx)
{
	formtargetx.focus(); formtargetx.select();
}

function CopyToClipboard(formtargetx)
{

	if (formtargetx.value != "")
	{
		SelectAll(formtargetx);
		CopiedTxt = document.selection.createRange();
		CopiedTxt.execCommand("Copy");
		//nothing to focus
	}
}

function rbCheck(id)
{
  document.getElementById(id).checked = "yes";
}
