/* Note: this is JavaScript and is not very forgiving of syntax errors. Each of these modules below affect a module on ajcexchange.com module1 is the long skinny module on top module2 is the rectangular module on the left under module1 module3 is the rectangular module on the right under module1 It may take some time for your changes to appear on the site */ // Module 1 var module1_header = " " var module1_content = " " // Module 2 var module2_image = "images/blog-logo.gif" var module2_header_link = "http://blogs.ajc.com/exchange/" var module2_header = "the exchange" var module2_content_link = "http://blogs.ajc.com/exchange/2009/06/03/new-feature-garage-sale-location-maps" var module2_content = "garage sale listings now have maps!" // Module 3 var module3_header = "share your listing with" var module3_content = "Facebook
" // Do not edit anything below var module1 = "

" + module1_header + "

" + module1_content; var module2 = "Exchange Blog

" + module2_header + "

" + module2_content + ""; var module3 = "

" + module3_header + "

" + module3_content; function write_module(name,location) { document.getElementById(location).innerHTML = name; }