/*
 * BabyBooks 2.0
 * Copyright © 2000-2001 BabyZone.com
 *
 * PURPOSE:  Common JavaScript
 * AUTHOR:   Tim Vasil
 * CREATED:  December 2000
 */
 
var wnd;
var quote = "'";

function ValidEMail(iControl) {
   if (!iControl.value.match(/.+@.+\..+/)) {
      iControl.focus();
      if (iControl.value == '') {
         alert("Please specify an e-mail address.");
      } else {
         alert("'" + iControl.value + "' is not a valid e-mail address.  Please check this address.");
      }
      return false;
   }
   return true;
}

function SelectPhoto(sName)
{
   wnd = window.open('PhotoSelect.asp?name=' + sName, 'photoselect', 'width=470,height=450,resizable,scrollbars');
   wnd.focus();
}

function RemovePhoto(objID, objImg)
{
   objID.value = "-1";
   objImg.src = "/images/NoImage.gif";
}

function ValidateContacts()
{
   for (var i=1; i <= document.form.Count.value; i++) {
      if (eval('document.form.Name' + i + '.value != ""')) {
         if (!ValidEMail(eval('document.form.Email' + i))) {
            return false;
         }
      }
   }
   return true;
}
