		<!--to hide script contents from old browsers
		function LocationHref(toUrl, toTgt, toQry) {
			var		dtDate = new Date();
			var		stm = dtDate.getTime();

			if (typeof(toQry) == 'undefined' || toQry == '') {
				toQry = '';
			} else {
				toQry = toQry + "&";
			}
			if (typeof(toTgt) == 'undefined') {
				toTgt = '';
			}
			toQry = toQry + "ymdhms=" + stm;
			if (toTgt == '') {
				location.href = toUrl + toQry;
			} else {
				if (toTgt == 'toeicmain') {
					parent.toeicmain.location.href = toUrl + toQry;
				} else {
					window.open(toUrl + toQry, toTgt);
				}
			}
		}
		// -->
