//----------------------------------------------------------------------------
// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header

var good;
function checkEmailAddress(field) {

// Note: The next expression must be all on one line...
//       allow no spaces, linefeeds, or carriage returns!
var goodEmail = field.value.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\..{2,2}))$)\b/gi);

if (goodEmail){
   good = true
} else {
   alert('Please enter a valid e-mail address.')
   field.focus()
   field.select()
   good = false
   }
}

function sendOff(){
   good = false
   checkEmailAddress(document.TheForm.email_address)
   if (good) {
      // This is where you put your action
      // if name and email addresses are good.
      // We show an alert box, here; but you can
      // use a window.location= 'http://address'
      // to call a subsequent html page,
      // or a Perl script, etc.
      // window.location= 'http://ubiquitone.com/music/contact.asp'
	  return good
   }
   else {
      document.TheForm.email_address.focus()
	  document.TheForm.email_address.select()
	  return good
	  }
}
//----------------------------------------------------------------------------
FB.init("c0156f7310256e6b50a6a33d8a1e4751");
//----------------------------------------------------------------------------
TargetDate = "3/14/2006 3:47 AM";
BackColor = "black";
ForeColor = "white";
CountActive = true;
DisplayFormat = "%%D%% %%H%% %%M%% %%S%%";
FinishMessage = "";
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
