
function IncTxtBox(objTxtBox) {
  var intValue=document.getElementById(objTxtBox).value;
	intValue++;
  document.getElementById(objTxtBox).value=intValue;
	return true;
}

function DecTxtBox(objTxtBox) {
  var intValue=document.getElementById(objTxtBox).value;
	if (intValue>=2) {
	  intValue--;
    document.getElementById(objTxtBox).value=intValue;
	}
	return true;
}

