
function createMessages_NEWS(messages, array) {

  for (x in array) {
    messages[x] = '<p class="news">'+array[x]+'</p>';
  }

}


function produceHtml_PRESS(array) {

document.write('        <table width="100%" border="0" cellspacing="0" cellpadding="0">');

for (x in array) {

document.write('          <tr>');
document.write('            <td><table width="100%" border="0" cellspacing="5" cellpadding="0">');
document.write('                <tr valign="top">');
document.write('                  <td width="1" align="center"> <table width="100%" border="0" cellspacing="0" cellpadding="0">');
document.write('                      <tr>');
document.write('                        <td align="center" valign="top"><a href="#" class="bodytext"><font color="336699"><strong>' + array[x][0] + '</strong></font></a></td>');
document.write('                      </tr>');
document.write('                      <tr>');
document.write('                        <td align="center" valign="top"><img src="../images/trans.gif" width="80" height="4"></td>');
document.write('                      </tr>');
document.write('                    </table></td>');
document.write('                  <td width="1" background="../images/vert_dots.gif"><img src="../images/vert_dots.gif" width="9" height="3"></td>');
document.write('                  <td width="100%" class="bodytext">' + array[x][1] +'</td>');
document.write('                </tr>');
document.write('              </table></td>');
document.write('          </tr>');
document.write('          <tr>');
document.write('            <td background="../images/dots.gif"><img src="../images/trans.gif" width="1" height="1"></td>');
document.write('          </tr>');

}

document.write('        </table>');

}

function produceHtml_EVENTS(array) {

document.write('        <table width="100%" border="0" cellspacing="0" cellpadding="0">');

for (x in array) {

document.write('          <tr>');
document.write('            <td background="../images/dots.gif"><img src="../images/trans.gif" width="1" height="1"></td>');
document.write('          </tr>');
document.write('          <tr>');
document.write('            <td><table width="100%" border="0" cellspacing="5" cellpadding="0">');
document.write('                <tr valign="top">');
document.write('                  <td width="1" align="center"> <table width="100%" border="0" cellspacing="0" cellpadding="0">');
document.write('                      <tr>');
document.write('                        <td align="center" valign="top" class="bodytextsmaller"><font color="336699"><strong>' + array[x][0] + '</strong></font></td>');
document.write('                      </tr>');
document.write('                      <tr>');
document.write('                        <td align="center" valign="top"><img src="../images/trans.gif" width="100" height="10"></td>');
document.write('                      </tr>');
document.write('                      <tr>');
document.write('                        <td align="center" valign="top" class="bodytextsmaller">&nbsp;</td>');
document.write('                      </tr>');
document.write('              </table></td>');
document.write('                 <td width="1" background="../images/vert_dots.gif"><img src="../images/vert_dots.gif" width="9" height="3"></td>');
document.write('                 <td width="100%" class="bodytext"><p><span class="bodytext">');
document.write('                      <strong>' + array[x][1] +'</strong></span><span class="bodytext"></span></p></td>');
document.write('                </tr>');
document.write('              </table></td>');
document.write('          </tr>');
document.write('          <tr>');
document.write('            <td background="../images/dots.gif"><img src="../images/trans.gif" width="1" height="1"></td>');
document.write('          </tr>');

}

document.write('        </table>');

}


