// Activate message? 1=yes 0=no
var active = '0';

// Message to be posted on the site
var subject = 'EAS Message Testing';
var message = 'We are testing a new EA system. You can ignore this message.';
















// DO NOT EDIT BELOW THIS
var templateh = '<p style="border: 1px red dotted;color:#fff;background-color:#800;padding:5px;">';
var templatef = '<br></p>';
//posting the announcement
if(active!=0){
document.write(templateh);
document.write('<strong>');
document.write(subject);
document.write('</strong><br>');
document.write(message);
document.write(templatef);
}

//done
