<!--
// ----------------------------------------------------------------------//

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/joinEmailList.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(); }
}
// use height=230 for ARIAL font;  use height=252 for TIMES NEW ROMAN font;
popup = window.open('email_join.htm','addresses',
'width=420,height=252,screenX=200,screenY=200,top=200,left=200,status=no,scrollbars=yes,resizable=yes');
}

// -->