// *********************************************************************** 
//  START INCLUDE: BUILD FOOTER
//  Modified by:	Josh Bihary
//  Modify date:	June 4, 2001
//  Description:	Comprises bottom part of template with FooterLinks and
//  Dropdowns for Country and Language
// *********************************************************************** 

function fncBuildFooter(){

var strTemp = '';

strTemp += '<form name="frmFooter" action="#">';
//start table 
strTemp += '<table cellpadding="0" cellspacing="0" border="0" width="100%">';
strTemp += ' <tr>';
strTemp += '   <td width="270"><img src="' + gobjClear.on.src + '" width="270" height="1"></td>';
strTemp += '   <td width="100%"><img src="' + gobjClear.on.src + '" width="1" height="1"></td>';
strTemp += ' </tr>';
strTemp += ' <tr>';
strTemp += '   <td></td>';
strTemp += '   <td>';
strTemp += '     <table cellpadding="0" cellspacing="0" border="0" width="100%">';
strTemp += '       <tr>';
strTemp += '         <td bgcolor="#5A5A5A" width="100%"><img src="' + gobjClear.on.src + '" width="1" height="1"></td>';
strTemp += '       </tr>';
strTemp += '       <tr>';

document.write( strTemp );

fncBuildFooterLinks();

strTemp = '';
strTemp += '       </tr>';
strTemp += '       <tr>';
strTemp += '         <td bgcolor="#5A5A5A" width="100%"><img src="' + gobjClear.on.src + '" width="1" height="1"></td>';
strTemp += '       </tr>';
strTemp += '       <tr>';
strTemp += '         <td align="left">';
strTemp += '           <table cellpadding="0" cellspacing="0" border="0">';
strTemp += '             <tr>';
strTemp += '               <td bgcolor="#5A5A5A"><img src="' + gobjClear.on.src + '" width="1" height="2"></td>';
strTemp += '             </tr>';
strTemp += '           </table>';
strTemp += '          </td>';
strTemp += '        </tr>';
strTemp += '        <tr>';
strTemp += '          <td bgcolor="#5A5A5A" width="100%"><img src="' + gobjClear.on.src + '" width="1" height="1"></td>';
strTemp += '        </tr>';
strTemp += '      </table>';
				
strTemp += '      <table cellpadding="0" cellspacing="0" border="0">';
strTemp += '        <tr>';
strTemp += '          <td width="1" bgcolor="#5A5A5A"><img src="' + gobjClear.on.src + '" width="1" height="4"></td>';
strTemp += '          <td width="399"><img src="' + gobjClear.on.src + '" width="399" height="4"></td>';
strTemp += '          <td width="50"><img src="' + gobjClear.on.src + '" width="50" height="4"></td>';
strTemp +=            '<td width="50"><img src="' + gobjClear.on.src + '" width="50" height="4"></td>';
strTemp += '        </tr>';
strTemp += '        <tr>';
strTemp += '          <td bgcolor="#5A5A5A"><img src="' + gobjClear.on.src + '" width="1" height="1"></td>';
strTemp += '          <td valign="middle" height="25">&nbsp;';

document.write( strTemp );
fncBuildCountryDropdowns();

strTemp = '';
strTemp += '&nbsp;';
strTemp += '          </td>';
strTemp += '          <td valign="middle" align="right" nowrap>';

document.write( strTemp );
fncBuildLegalPrivacy();

strTemp = '';
strTemp += '          </td>';
strTemp += '          <td></td>';
strTemp += '         </tr>';
strTemp += '         <tr>';
strTemp += '           <td bgcolor="#5A5A5A"><img src="' + gobjClear.on.src + '" width="1" height="1"></td>';
strTemp += '           <td valign="top" nowrap colspan="2" align="right">';

document.write( strTemp );
fncBuildCopyright();

strTemp = '';
strTemp += '           </td>';
strTemp += '           <td></td>';
strTemp += '         </tr>';
strTemp += '        </table>';
strTemp += '       </td>';
strTemp += '      </tr>';
strTemp += '     </table>';
strTemp += '   </td>';
strTemp += ' </tr>';
strTemp += '</table>';
strTemp += '</form>';

document.write( strTemp );

// *********************************************************************** 
//  END INCLUDE: BUILD FOOTER 
// *********************************************************************** 

}

