<!--
// ------------------------------------------------------------------------//

function writeBannerButton() {

// For a "join our email list" button, set the file spec in the statement below.
// For no button, use the document.write statement that writes only "&nbsp;"

document.write('&nbsp;');

//document.write('<a href="javascript:void(0)" '
//+ 'onClick="email_join_popup()"><img border="0" src="images/joinEmailListAnimation3x.gif"></a>');

}

// ------------------------------------------------------------------------//

function email_join_popup() {

// the following "popup.closed" test fails in FrontPage, even when the object exists.
// So, skip the test completely if we are on a "localMachine" (pathname contains "C:\")
currentPath = parent.location.pathname;
var localMachineREG = /C:\\/;
if (!currentPath.match(localMachineREG)) {
  if(window.popup) { if(!popup.closed) popup.close(); }
}
popup = window.open('email_join.htm','addresses',
'width=420,height=230,screenX=200,screenY=200,top=200,left=200,status=no,scrollbars=yes,resizable=yes');
}

// ------------------------------------------------------------------------//
// -->