<!--
// ----------------------------------------------------------------------//

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)" '
+ 'style="background-color:transparent" '
+ '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=440,height=352,screenX=200,screenY=200,top=200,left=200,status=no,scrollbars=yes,resizable=yes');
}

// -->
// ------------------------------------------------------------------------//

function write_specials_links() {
document.write(' '


//+ '<tr><td align="center" height="28"><a href="../specials/WinterSale.pdf" target="_blank" '
//+ ' class="nav-spec"><i>&nbsp;Winter&nbsp;Sale!&nbsp;</i></a></td></tr>'

//+ '<tr><td align="center" height="28"><a href="../specials/July4Sale.pdf" target="_blank" '
//+ ' class="nav-spec"><i>&nbsp;July&nbsp;4&nbsp;Sale!&nbsp;</i></a></td></tr>'

+ '<tr><td align="center" height="28"><a href="../specials/SixeasSummerCouponSale.pdf" target="_blank" '
+ ' class="nav-spec"><i>&nbsp;Summer&nbsp;Sale!&nbsp;</i></a></td></tr>'

//+ '<tr><td align="center" height="48"><a href="../specials/InteriorDesignSpecial.pdf" target="_blank" '
//+ ' class="nav-spec"><i>&nbsp;Special&nbsp;<br>&nbsp;50% Off!&nbsp;</i></a></td></tr>'

//+ '<tr><td align="center" height="28"><a href="../specials/MemorialDaySale.pdf" target="_blank" '
//+ ' class="nav-spec"><i>&nbsp;Memorial&nbsp;Day&nbsp;<br>&nbsp;Sale!&nbsp;</i></a></td></tr>'

//+ '<tr><td align="center" height="48"><a href="../specials/SpecialSale.pdf" target="_blank" '
//+ ' class="nav-spec"><i>&nbsp;Special&nbsp<br>&nbsp;;Sale!&nbsp;</i></a></td></tr>'


//+ '<tr><td align="center" height="28"><a href="../_specials_COUPON.htm" target="_parent" '
//+ ' class="nav-spec"><i>&nbsp;Web&nbsp;COUPON&nbsp;</i></a></td></tr>'


+ ' ');

}

// -->
// ----------------------------------------------------------------------//

function writeSpreeButton() {

// For a "join our spree 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('');

document.write('<tr><td align="center" valign="top" height="64"><a href="javascript:void(0)" '
+ 'style="background-color:transparent" '
+ 'onClick="email_join_spree_popup()"><img border="0" src="images/joinSpreeList.gif"></a></td></tr>');

}

// ------------------------------------------------------------------------//

function email_join_spree_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_spree.htm','addresses',
'width=480,height=480,screenX=200,screenY=200,top=200,left=200,status=no,scrollbars=yes,resizable=yes');
}

// -->