function twodigits(i) {
	if (i > 9) {
		return i;
	} else {
		return '0' + i;
	}
}
function getParam1() {
  var d = new Date();
  var o = -d.getTimezoneOffset();
  return screen.width + 'x' + screen.height + 'x' + screen.colorDepth + ' UTC ' + (o >= 0 ? '+' : '-') + ' ' + twodigits(Math.floor(Math.abs(o) / 60)) + ':' + twodigits(Math.abs(o) % 60);
}
document.getElementById('Stnj1W8YDT3TVClj1Jf3AUX84ZGuizZc').value = getParam1();

