  
/*================APPLICATION FUNCTIONS===============*/

var correct = true

function checkEmail()
{
var EmailCorrect = false
for (var i = 0; i <= document.app.email.value.length; i++)
 {
 if (document.app.email.value.charAt(i) == "@") {EmailCorrect = true}
 }

for (var i = 0; i <= document.app.email.value.length; i++)
 {
 if (document.app.email.value.charAt(i) == " ") {EmailCorrect = false}
 }

var EMDot = document.app.email.value.length
if (document.app.email.value.substring(EMDot - 1, EMDot) == ".") {
 EmailCorrect = false
 }

if (EmailCorrect == false){
 document.app.email.value = "info@easycharge.net"
 }

if (document.app.AdCode)
 {
 if (document.app.AdCode.value == ""){
  document.app.AdCode.value = "same2494";
  }
 }
}

/*=====================================================*/

function HomeSame()
{
if (document.app.same.checked == true){
 document.app.HomeStreet.value = document.app.BusStreet.value;
 document.app.HomeSuite.value = document.app.BusSuite.value;
 document.app.HomeCity.value = document.app.BusCity.value;
 for (var i = 0; i < document.app.BusState.length; i++) {
  document.app.HomeState.options[i].selected = document.app.BusState.options[i].selected;
 }
 document.app.HomeZIP.value = document.app.BusZIP.value;
 if (document.app.BusCountry0[1].checked == true) { document.app.HomeCountry.value = document.app.BusCountry.value; }
 else { document.app.HomeCountry.value = "USA"; }
 }
}
