// JavaScript functions for image rollovers

// <!-- hide
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
// stop hiding -->

// <!-- hide 
  if (document.images) {
    btn_home_over = new Image(89,20); btn_home_over.src = "images/btn_home_over.gif";
    btn_about_over = new Image(76,20); btn_about_over.src = "images/btn_about_over.gif";
    btn_menus_over = new Image(104,20); btn_menus_over.src = "images/btn_menus_over.gif";
    btn_testimonials_over = new Image(76,20); btn_testimonials_over.src = "images/btn_testimonials_over.gif";
    btn_directions_over = new Image(145,20); btn_directions_over.src = "images/btn_directions_over.gif";
    btn_contact_over = new Image(160,30); btn_contact_over.src = "images/btn_contact_over.gif";
    ftr_wr_over = new Image(250,30); ftr_wr_over.src = "images/ftr_wr_over.gif";
  }
  
// stop hiding -->

// Check that required fields in contact form are filled in and email is valid
function checkRequiredFieldsContact(form, img_txt) {
  if (form.name.value == '') {
    alert("Please enter Your Full Name.");
    return false;
  }
  email = form.email.value;
  if (email == '') {
    alert("Please enter your Email Address.");
    return false;
  }
  index = email.indexOf("@");
  if (index < 1 || index == email.length-1) {
    alert("Please make sure your Email Address is valid.");
	return false;
  }  
  if (form.reason.value == '') {
    alert("Please select your Reason for contacting us.");
    return false;
  }
  if (form.location.value == '') {
    alert("Please select the JustFood location you would like to contact.");
    return false;
  }
  if (form.message.value == '') {
    alert("Please enter Your Message.");
    return false;
  }
  if (form.image_text.value == '') {
    alert("Please enter the text displayed in the Image Verification field.");
    return false;
  }
  // Check that image verification field text matches
  user_txt = form.image_text.value.toLowerCase();  // Convert text to lowercase first
  if (user_txt != img_txt) {
    alert("The text you entered in the Image Verification field does not match.");
    return false;
  }

  return true;
}


// Function used to open menu window and set focus to it
function openMenuWindow(URL)
{
  popup = window.open(URL,'Menu','height=650,width=750,scrollbars=1,resizable=1');
  popup.focus();
}

function openGoogleMapWindow(URL)
{
  popup = window.open(URL,'Map','height=620,width=720,scrollbars=1,resizable=1');
  popup.focus();
}

function setMapquestLocation(form, location)
{
  if (location == 'Ambler') {
    form.address.value = '875 West Butler Pike';
    form.zipcode.value = '19002';
  }
  else {
    form.address.value = '4920 York Road';  //'4920 Old York Road';  MapQuest cannot find this address
    form.zipcode.value = '18901';
  }
}
