function uniqueString() {
	var mydate = new Date;
	var myday = mydate.getDate();
	var mymonth = mydate.getMonth()+1;
	var myhour = mydate.getHours();
	var myminutes = mydate.getMinutes();
	var myseconds = mydate.getSeconds();
	if(mymonth < 10) mymonth = "0" + mymonth;
	if(myday < 10) myday = "0" + myday;
	if(myhour < 10) myhour = "0" + myhour;
	if(myminutes < 10) myminutes = "0" + myminutes;
	if(myseconds < 10) myseconds = "0" + myseconds;

	uniq = 1 + mymonth + myday + myhour + myminutes + myseconds;

	document.getElementById('transid').value = uniq;
	document.getElementById('redirect').value = "http://www.allansthomas.com/contact-thanks.php?transid=" + uniq;
}