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;
}
function popUpOrder(theISBN) { //v0.9
  theFeatures='menubar=yes,toolbar=yes,location=yes,resizable=yes,scrollbars=yes,status=yes,width=620,left=5,top=5,screenX=5,screenY=5';
  theBookURL = 'http://www.harpercollins.com/authorintro/catalog/order_xml.asp?isbn='+theISBN;
  orderWindow = window.open(theBookURL,'OrderBook',theFeatures);
  orderWindow.focus();
}
function popUpChar(theChar) { //v0.9
  theFeatures='menubar=no,resizable=yes,scrollbars=no,status=no,width=350,height=450,left=5,top=5,screenX=5,screenY=5';
  charWindow = window.open(theChar,'ShowChar',theFeatures);
  charWindow.focus();
}
function SBW_jumpChar(targ,selObj,restore){ //v0.9
  if (selObj.selectedIndex) eval(popUpChar(selObj.options[selObj.selectedIndex].value));
  if (restore) selObj.selectedIndex=0;
}
function popUpArchive(theArchive) { //v0.9
  archiveWindow = window.open(theArchive,'ShowArchive');
  archiveWindow.focus();
}
function SBW_jumpArchive(targ,selObj,restore){ //v0.9
  if (selObj.selectedIndex) eval(popUpArchive(selObj.options[selObj.selectedIndex].value));
  if (restore) selObj.selectedIndex=0;
}
function mmLoadMenus() {
  window.mm_menu_0117163033_0 = new Menu("root",165,14,"Verdana, Arial, Helvetica, sans-serif",10,"#2753ba","#2753ba","#d8e2f3","#f2c942","left","middle",2,0,100,-5,7,true,true,true,3,true,true);
  mm_menu_0117163033_0.addMenuItem("Home&nbsp;to&nbsp;Harmony","location='hometoharmony.html'");
  mm_menu_0117163033_0.addMenuItem("Just&nbsp;Shy&nbsp;of&nbsp;Harmony","location='justshyofharmony.html'");
  mm_menu_0117163033_0.addMenuItem("Signs&nbsp;and&nbsp;Wonders","location='signsandwonders.html'");
  mm_menu_0117163033_0.addMenuItem("Christmas&nbsp;in&nbsp;Harmony","location='christmasinharmony.html'");
  mm_menu_0117163033_0.addMenuItem("Life&nbsp;Goes&nbsp;On","location='lifegoeson.html'");
  mm_menu_0117163033_0.addMenuItem("A&nbsp;Change&nbsp;of&nbsp;Heart","location='achangeofheart.html'");
  mm_menu_0117163033_0.addMenuItem("The&nbsp;Christmas&nbsp;Scrapbook","location='christmasscrapbook.html'");
  mm_menu_0117163033_0.addMenuItem("Almost&nbsp;Friends","location='almostfriends.html'");
   mm_menu_0117163033_0.fontWeight="bold";
   mm_menu_0117163033_0.hideOnMouseOut=true;
   mm_menu_0117163033_0.menuBorder=1;
   mm_menu_0117163033_0.menuLiteBgColor='#ffffff';
   mm_menu_0117163033_0.menuBorderBgColor='#2753ba';
   mm_menu_0117163033_0.bgColor='#2753ba';

  mm_menu_0117163033_0.writeMenus();
} // mmLoadMenus()
//
// Old Form Validator for ENewsletterPro sign-up code - KEEP for archive newsletters
function ENewsletterPro_JoinForm_Validator(theForm) {
  var reEmail = /^([A-Z0-9_-]+[A-Z0-9\._-]*@)([A-Z0-9_-]+\.)+(([A-Z]{2,4}|museum)$)/
  if (! reEmail.test(theForm.Email.value.toUpperCase()))
  {
    alert("Please enter a valid e-mail address.");
    theForm.Email.focus();
    return (false);
  }
  return (true);
}
//
// 2006-01-24 New Form Validator for ENewsletterPro sign-up code
function checkEmail(myForm) {
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(myForm.email.value)){
	return (true)
	}
	alert("Invalid E-mail Address! Please re-enter.")
	return (false)
}