function getrndnum()
{
  var randscript = -1;
//  while (randscript < 0 || randscript > messages.length)  {
  while (randscript < 0 || randscript > messages.length || isNaN(randscript))  {
    randscript = parseInt( ( Math.random()*(messages.length) ) );
  }
  return randscript;
};

function arraySetupmessage()
{
messages = new Array ("<a href=javascript:void(null)  onClick=\"window.open('/about/moneyman/pt1.shtml','help','dependent=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,left='+((screen.width - 725) / 2)+',top='+((screen.height - 525) / 2)+',width=725,height=525');\"><img src=\"/graphics/message2.gif\" width=271 height=24 border=0></A>",
"<a href=javascript:void(null) onClick=\"window.open('/about/moneyman/pt2.shtml','help','dependent=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,left='+((screen.width - 725) / 2)+',top='+((screen.height - 525) / 20)+',width=725,height=525');\"><img src=\"/graphics/message3.gif\" width=271 height=24 border=0></A>",
"<a href=javascript:void(null) onClick=\"window.open('/about/moneyman/pt3.shtml','help','dependent=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,left='+((screen.width - 725) / 2)+',top='+((screen.height - 525) / 20)+',width=725,height=525');\"><img src=\"/graphics/message4.gif\" width=271 height=24 border=0></A>",
"<a href=javascript:void(null) onClick=\"window.open('/about/moneyman/pt4.shtml','help','dependent=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,left='+((screen.width - 725) / 2)+',top='+((screen.height - 525) / 20)+',width=725,height=525');\"><img src=\"/graphics/message5.gif\" width=271 height=24 border=0></A>",
"<a href=javascript:void(null) onClick=\"window.open('/about/moneyman/pt5.shtml','help','dependent=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,left='+((screen.width - 725) / 2)+',top='+((screen.height - 525) / 20)+',width=725,height=525');\"><img src=\"/graphics/message6.gif\" width=271 height=24 border=0></A>",
"<a href=javascript:void(null) onClick=\"window.open('/about/moneyman/pt6.shtml','help','dependent=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,left='+((screen.width - 725) / 2)+',top='+((screen.height - 525) / 20)+',width=725,height=525');\"><img src=\"/graphics/message7.gif\" width=271 height=24 border=0></A>",
"<a href=javascript:void(null) onClick=\"window.open('/about/moneyman/pt7.shtml','help','dependent=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,left='+((screen.width - 725) / 2)+',top='+((screen.height - 525) / 20)+',width=725,height=525');\"><img src=\"/graphics/message8.gif\" width=271 height=24 border=0></A>",
"<a href=javascript:void(null) onClick=\"window.open('/about/moneyman/pt9.shtml','help','dependent=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,left='+((screen.width - 725) / 2)+',top='+((screen.height - 525) / 20)+',width=725,height=525');\"><img src=\"/graphics/message10.gif\" width=271 height=24 border=0></A>");
};

function messageSetup()
{
  arraySetupmessage();  //in message.js
  rndnum = getrndnum();
};

function displaymessage()
{
  messageSetup();
  messageHTM = messages[rndnum];

//  if (is.ns4)  {
    document.write(messageHTM);
//  }
//  else if (is.ie4)  {
//    document.innerHTML = messageHTM;
//  }
};
