function randomPic() {
var thePics = new Array();

// ADD DELETE OR EDIT AGENTS HERE - CONTINUE WITH THE FORMAT PATTERN OF COURSE
thePics[0] = '<td width=775><img border=0 src=/images/headers/1031-header.jpg></td>';
thePics[1] = '<td width=775><img border=0 src=/images/headers/401-header.jpg></td>';
thePics[2] = '<td width=775><img border=0 src=/images/headers/about-header.jpg></td>';
thePics[3] = '<td width=775><img border=0 src=/images/headers/links-header.jpg></td>';
thePics[4] = '<td width=775><img border=0 src=/images/headers/portfolios-header.jpg></td>';
thePics[4] = '<td width=775><img border=0 src=/images/headers/roth-header.jpg></td>';

var p = thePics.length;
var whichPic = Math.round(Math.random()*(p-1));
document.writeln(thePics[whichPic]);
return;
}
