 function CheckLen()
	  {
		  if (document.order.notes.value.length > 250)
		  {
			  alert("You can not enter more than 250 characters in Notes. (You have entered " + document.order.notes.value.length + " characters.)");
			  document.order.notes.focus();
		  }
	  }

	  function Get_Cookie(name) {
		  var start = document.cookie.indexOf(name+"=");
		  var len = start+name.length+1;
		  if ((!start) && (name != document.cookie.substring(0,name.length))) return null;
		  if (start == -1) return null;
		  var end = document.cookie.indexOf(";",len);
		  if (end == -1) end = document.cookie.length;
		  return unescape(document.cookie.substring(len,end));
	  }

	  function Set_Cookie(name,value,expires,path,domain,secure) {
		  document.cookie = name + "=" +escape(value) +
			  ( (expires) ? ";expires=" + expires.toGMTString() : "") +
			  ( (path) ? ";path=" + path : "") +
			  ( (domain) ? ";domain=" + domain : "") +
			  ( (secure) ? ";secure" : "");
	  }

	  var today = new Date();
	  var expires = new Date(today.getTime() + (56 * 86400000));

	  function set() {
		Set_Cookie("contact",document.order.contact.value,expires);
		Set_Cookie("SenderCompany",document.order.SenderCompany.value,expires);
		Set_Cookie("sender_phone_area",document.order.sender_phone_area.value,expires);
		Set_Cookie("sender_phone_exch",document.order.sender_phone_exch.value,expires);
		Set_Cookie("sender_phone_number",document.order.sender_phone_number.value,expires);
		Set_Cookie("company_name",document.order.company_name.value,expires);
		Set_Cookie("AccountNumber",document.order.AccountNumber.value,expires);
		Set_Cookie("address1",document.order.address1.value,expires);
		Set_Cookie("address2",document.order.address2.value,expires);
		Set_Cookie("cophone_area",document.order.cophone_area.value,expires);
		Set_Cookie("cophone_exch",document.order.cophone_exch.value,expires);
		Set_Cookie("cophone_number",document.order.cophone_number.value,expires);
		Set_Cookie("company_city",document.order.company_city.value,expires);
		Set_Cookie("cofax_area",document.order.cofax_area.value,expires);
		Set_Cookie("cofax_exch",document.order.cofax_exch.value,expires);
		Set_Cookie("cofax_number",document.order.cofax_number.value,expires);
		Set_Cookie("company_state",document.order.company_state.selectedIndex,expires);
		Set_Cookie("company_zip",document.order.company_zip.value,expires);
		Set_Cookie("company_email",document.order.company_email.value,expires);
	  }

	  function get() {
		  contact = Get_Cookie("contact")
		  if (contact != null) {
			  document.order.contact.value = contact;
			}

		  SenderCompany = Get_Cookie("SenderCompany")
		  if (SenderCompany != null) {
			  document.order.SenderCompany.value = SenderCompany;
			}

		  sender_phone_area = Get_Cookie("sender_phone_area")
		  if (sender_phone_area != null) {
			  document.order.sender_phone_area.value = sender_phone_area;
			}

		  sender_phone_exch = Get_Cookie("sender_phone_exch")
		  if (sender_phone_exch != null) {
			  document.order.sender_phone_exch.value = sender_phone_exch;
			}

		  sender_phone_number = Get_Cookie("sender_phone_number")
		  if (sender_phone_number != null) {
			  document.order.sender_phone_number.value = sender_phone_number;
			}

		  company_name = Get_Cookie("company_name")
		  if (company_name != null) {
			  document.order.company_name.value = company_name;
			}

		  AccountNumber = Get_Cookie("AccountNumber")
		  if (AccountNumber != null) {
			  document.order.AccountNumber.value = AccountNumber;
			}

		  address1 = Get_Cookie("address1")
		  if (address1 != null) {
			  document.order.address1.value = address1;
			}

		  address2 = Get_Cookie("address2")
		  if (address2 != null) {
			  document.order.address2.value = address2;
			}

		  cophone_area = Get_Cookie("cophone_area")
		  if (cophone_area != null) {
			  document.order.cophone_area.value = cophone_area;
			}

		  cophone_exch = Get_Cookie("cophone_exch")
		  if (cophone_exch != null) {
			  document.order.cophone_exch.value = cophone_exch;
			}

		  cophone_number = Get_Cookie("cophone_number")
		  if (cophone_number != null) {
			  document.order.cophone_number.value = cophone_number;
			}

		  company_city = Get_Cookie("company_city")
		  if (company_city != null) {
			  document.order.company_city.value = company_city;
			}

		  cofax_area = Get_Cookie("cofax_area")
		  if (cofax_area != null) {
			  document.order.cofax_area.value = cofax_area;
			}

		  cofax_exch = Get_Cookie("cofax_exch")
		  if (cofax_exch != null) {
			  document.order.cofax_exch.value = cofax_exch;
			}

		  cofax_number = Get_Cookie("cofax_number")
		  if (cofax_number != null) {
			  document.order.cofax_number.value = cofax_number;
			}

		  company_state = Get_Cookie("company_state")
		  if (company_state != null) {
		  	  document.order.company_state.selectedIndex = company_state;
		  	}

		  company_zip = Get_Cookie("company_zip")
		  if (company_zip != null) {
			  document.order.company_zip.value = company_zip;
			}

		  company_email = Get_Cookie("company_email")
		  if (company_email != null) {
			  document.order.company_email.value = company_email;
			}
		}
