var oldHistLengthTwo = 99999;
setInterval ( "checkHistoryTwo()", 1500 );

function checkHistoryTwo() {
   // alert(oldHistLength);
   // alert(history.length - 1 - historyOffset);
   // alert("Checking.");
   if (oldHistLengthTwo < history.length) {
		document.forms['sendform'].submit();
   }
}

function setHistTwo() {
	document.getElementById("sendBlock").style.display = "none";
	oldHistLengthTwo = history.length;
	// alert(oldHistLength);
}
