// toggle visibility 

function toggle( targetId ){
  if (document.getElementById){
  		target = document.getElementById( targetId );
  			if (target.style.display == "none"){
  				target.style.display = "";
  			} else {
  				target.style.display = "none";
  			}
  	}
}

//footer 
function drawFooter(){
footer = ''+
'<table width="769" border=0 cellpadding=0 cellspacing=0><tr><td class="alt"><img src="/images/spacer.gif" width=1 height=1></td></tr></table>'+
'<table width="769" border="0" cellpadding="2" cellspacing="0">'+
'  <tr>'+
'    <td class="footer" align="center">&copy; 2002 Famous Supply ::: <a href="mailto:webmaster@famous-supply.com" class="footer">Contact Webmaster</a> ::: <a href="/about.html" class="footer">About Us</a> ::: <a href="/contact.html" class="footer">Contact Us</a> ::: <a href="/credit.html" class="footer">Credit</a> ::: <a href="/expo.html" class="footer">Expo</a> ::: <a href="/locations.html" class="footer">Locations</a> <br><a href="/order.html" class="footer">Order Online</a> ::: <a href="/products.html" class="footer">Products</a> ::: <a href="/showrooms.html" class="footer">Showrooms</a> ::: <a href="/training.html" class="footer">Training</a> ::: <a href="/events.html" class="footer">Special Events</a> ::: <a href="/vendorlinks.html" class="footer">Vendor Links</a> ::: <a href="/index.html" class="footer">Home</a></td>'+
'  </tr>'+
'</table>';

document.write(footer);
}
