function writeFooter(which)
{
    var html_str = '<table cellpadding="0" cellspacing="0" border="0" class="setWidth" height="100%">';

    if (which=='all')
        html_str+= '<tr>'
                 + '<td valign="middle" width="50%" align="center" class="copyright">Copyright &copy; 2009 Fence Supply Inc. - All rights reserved.</td>'
                 + '<td valign="middle" width="25%" align="right"><a href="javascript:printWindow()"><img src="../icon_print.gif" width="30" height="19" alt="Print this page" border="0"></a><a href="mailto:info@fencesupplyinc.com"><img src="../icon_email.gif" width="30" height="19" alt="Question? Email Us" border="0"></a><a href="javascript:add2browser()"><img src="../icon_bookmark.gif" width="30" height="19" alt="Bookmark this page" border="0"></a></td>'
                 + '</tr>';


   else if (which=='none')
        html_str+= '<div align="center" class="copyright">'
                 + '<tr><td></td></tr>';
				 
	html_str+= '</table>';			 

    document.write(html_str);
}
