/* Javascript used to set the focus to the scan barcode text field on load. */

function setfocus()
{
  Barcode = document.getElementById('barCode');
			
  if (Barcode)
  {
	Barcode.focus();
  }
}

function setfocus(obj)
{
  Barcode = document.getElementById(obj);
			
  if (Barcode)
  {
	Barcode.focus();
  }
}

/* Auto submit form when dealer scan coupon barcode */
function autosubmit()
{
/*			Barcode = document.getElementById('barcode');
			Form = document.getElementById('scanbarcode');

				if (Form && Barcode){

					/* If length of the text field is the same length of the barcode then autosubmit 
					if (Barcode.length >= 14)
					{
						document.Form.submit();
						/*document.writeln(Barcode.length);
					}
				}
*/
}
