// out put HTML code
 
 var imglist = new Array(
       "/ENN/COMMON/IMAGES/spacer.gif",
       "/ENN/COMMON/IMAGES/spacer.gif",
       "/ENN/COMMON/IMAGES/spacer.gif" );
    var selectnum = Math.floor((Math.random() * 100)) % imglist.length;
    var output = "<p class='badgeArea'>";
    output += "<img src=" + imglist[selectnum] + " />";
    output += "</p>";
    document.write(output);
