
function writeFooter(which)
{
    var html_str = '<table cellpadding="0" cellspacing="0" border="0" class="mainWidth" id="footerBar" align="center">';

    if (which=='footer')
        html_str+= '<tr>'	
			     + '<td valign="top"><img src="images/frm_crnr_bl.gif" width="30" height="30" alt="" border="0"></td>'
			     + '<td valign="middle" width="25%" class="footerBkg"></a></td>'
                 + '<td valign="middle" width="50%" class="footerBkg" align="center" id="copyright">Copyright &copy; 2002 AIRPRO Holdings, Inc. - All rights reserved.</td>'
                 + '<td valign="middle" width="25%" class="footerBkg" align="right"><a href="javascript:printWindow()"><img src="images/fbc_icon_print.gif" width="30" height="19" alt="Print this page" border="0"></a><a href="mailto:info@airproair.com"><img src="images/fbc_icon_email.gif" width="30" height="19" alt="Question? Email Us" border="0"></a><a href="javascript:add2browser()"><img src="images/fbc_icon_bookmark.gif" width="30" height="19" alt="Bookmark this page" border="0"></a></td>'
			     + '<td valign="top"><img src="images/frm_crnr_br.gif" width="30" height="30" alt="" border="0"></td>'
                 + '</tr>';


   else if (which=='')
        html_str+= '<tr><td></td></tr>';
				 
	html_str+= '</table>';			 

    document.write(html_str);
}

		
			
			


