i2on = new Image();
i2on.src = "../images/button_cu_o.jpg";
i2off = new Image();
i2off.src = "../images/button_cu.jpg";
i3on = new Image();
i3on.src = "../images/button_schedule_o.jpg";
i3off = new Image();
i3off.src = "../images/button_schedule.jpg";
i4on = new Image();
i4on.src = "../images/button_gallery_o.jpg";
i4off = new Image();
i4off.src = "../images/button_gallery.jpg";
i5on = new Image();
i5on.src = "../images/button_songs_o.jpg";
i5off = new Image();
i5off.src = "../images/button_songs.jpg";
i6on = new Image();
i6on.src = "../images/button_media_o.jpg";
i6off = new Image();
i6off.src = "../images/button_media.jpg";
i7on = new Image();
i7on.src = "../images/button_bios_o.jpg";
i7off = new Image();
i7off.src = "../images/button_bios.jpg";
i8on = new Image();
i8on.src = "../images/button_home_o.jpg";
i8off = new Image();
i8off.src = "../images/button_home.jpg";
i9on = new Image();
i9on.src = "../images/button_newsletter_o.jpg";
i9off = new Image();
i9off.src = "../images/button_newsletter.jpg";
i10on = new Image();
i10on.src = "../images/mack_o.gif";
i10off = new Image();
i10off.src = "../images/mack.gif";
i11on = new Image();
i11on.src = "../images/cj_o.gif";
i11off = new Image();
i11off.src = "../images/cj.gif";
i12on = new Image();
i12on.src = "../images/cody_o.gif";
i12off = new Image();
i12off.src = "../images/cody.gif";
i13on = new Image();
i13on.src = "../images/button_merchandise_o.jpg";
i13off = new Image();
i13off.src = "../images/button_merchandise.jpg";

/*/
/ / This function will change the src property of element
/ / to match the src property of the image in the DOM.
/ / Returns true or false depending on success.
/*/
function swapImg(element, image)
{
  // only if there are images defined in the DOM
  if (document.images)
  {
    eval("document." + element + ".src = \"" + image.src + "\";");
    return true;
  }
  else
    return false;
}

function open_popup1(URL){
aWindow = window.open(URL,"video","toolbar=no,location=no,directories=no,status=no,scrollbars=no,resize=no,menubar=no,width=335,height=400,top=75,left=10");
}

function open_popup2(URL){
aWindow = window.open(URL,"video","toolbar=no,location=no,directories=no,status=no,scrollbars=no,resize=no,menubar=no,width=195,height=260,top=75,left=10");
}

<!--//
/*This Script allows people to enter by using a form that asks for a
UserID and Password*/
function pasuser(form) {
if (form.id.value=="subdivision") { 
if (form.pass.value=="kensington") {              
location="memberarea.html" 
} else {
alert("Invalid Password")
}
} else {  alert("Invalid UserID")
}
}
//-->

	function checkform(what){
		if (what.first_name.value==''){ alert('You must provide your first name.'); what.first_name.focus(); return false;}
		else if (what.last_name.value==''){ alert('You must provide your last name.'); what.last_name.focus(); return false;}
		else if (what.email.value==''){ alert('You must provide your e-mail address.'); what.email.focus(); return false;}
		else if (!what.email.value.match(/^(.+)@(.+)$/)){ alert('The e-mail address you provided is invalid.'); what.email.focus(); return false;}
		else if (what.phone.value==''){ alert('You must provide your phone number.'); what.phone.focus(); return false;}
		else{ return true; }
	}