if (document.images)
{
  B1_on = newImage("Images/Buttons/B2_NowShowing1.gif")
  B1_off = newImage("Images/Buttons/B2_NowShowing.gif")
  
  B2_on = newImage("Images/Buttons/B2_Showtimes1.gif")
  B2_off = newImage("Images/Buttons/B2_Showtimes.gif")
  
  B3_on = newImage("Images/Buttons/B2_ComingSoon1.gif")
  B3_off = newImage("Images/Buttons/B2_ComingSoon.gif")
  
  B4_on = newImage("Images/Buttons/B2_Shopping1.gif")
  B4_off = newImage("Images/Buttons/B2_Shopping.gif")
  
  B5_on = newImage("Images/Buttons/B2_About1.gif")
  B5_off = newImage("Images/Buttons/B2_About.gif")
  
  B6_on = newImage("Images/Buttons/B2_Contact1.gif")
  B6_off = newImage("Images/Buttons/B2_Contact.gif")

  B7_on = newImage("Images/Buttons/B3_Theatres1.gif")
  B7_off = newImage("Images/Buttons/B3_Theatres.gif")

  B8_on = newImage("Images/Buttons/B3_Sound1.gif")
  B8_off = newImage("Images/Buttons/B3_Sound.gif")

  B9_on = newImage("Images/Buttons/B3_Ratings1.gif")
  B9_off = newImage("Images/Buttons/B3_Ratings.gif")

  B10_on = newImage("Images/Buttons/B3_Concessions1.gif")
  B10_off = newImage("Images/Buttons/B3_Concessions.gif")

  B11_on = newImage("Images/Buttons/B3_Jobs1.gif")
  B11_off = newImage("Images/Buttons/B3_Jobs.gif")

  B12_on = newImage("Images/Buttons/B3_OpenCap1.gif")
  B12_off = newImage("Images/Buttons/B3_OpenCap.gif")
  
  B13_on = newImage("Images/Buttons/ButtonRoll2-Press.gif")
  B13_off = newImage("Images/Buttons/Button2-Press.gif")

  B14_on = newImage("Images/Buttons/ButtonRoll2-ads.gif")
  B14_off = newImage("Images/Buttons/Button2-ads.gif")

}
else
{
  document.B1 = ""
  document.B2 = ""
  document.B3 = ""
  document.B4 = ""
  document.B5 = ""
  document.B6 = ""
  document.B7 = ""
  document.B8 = ""
  document.B9 = ""
  document.B10 = ""
  document.B11 = ""
  document.B12 = ""
  document.B13 = ""
  document.B14 = ""
  
  B1_on = ""
  B1_off = ""
  
  B2_on = ""
  B2_off = ""
  
  B3_on = ""
  B3_off = ""
  
  B4_on = ""
  B4_off = ""
  
  B5_on = ""
  B5_off = ""
  
  B6_on = ""
  B6_off = ""
  
  B7_on = ""
  B7_off = ""
  
  B8_on = ""
  B8_off = ""
  
  B9_on = ""
  B9_off = ""
  
  B10_on = ""
  B10_off = ""
  
  B11_on = ""
  B11_off = ""
  
  B12_on = ""
  B12_off = ""
  
  B13_on = ""
  B13_off = ""
  
  B14_on = ""
  B14_off = ""
}

function newImage(location)
{
  imgNew = new Image
  imgNew.src = location
  return imgNew
}

function validateEMail(textBox)
{
  var regEMail = new RegExp("^[A-Z0-9\-\_\.]+\@[A-Z0-9\-\_]+\.[A-Z0-9\-\_]{1,}", "i");

  if (!regEMail.test(textBox.value))
  {
    alert("\"" + textBox.value + "\" is not a valid e-mail address!")
    textBox.focus();
    textBox.select();
    return false;
  }
}

function popUp(url) 
{
  sealWin=window.open(url,"win",'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=500,height=450');
  self.name = "mainWin";
}

