// Define the footer text variable
var strFooterText;
var strYear = "2010";

// Footer HTML code here!
// Don't forget to use quotation marks around the text.
// In this case we use the single quote because you used the double quotes 
// in the HTML tags

strFooterText = 'ReboBetonPumping.com © ' + strYear + ' | All rights reserved.';

// Place the html code onto the web page
document.write( strFooterText );



//  ****** END ******























