var rec_array = new Array(); function rec(t,d,u,c,b) { this.title = t; this.description = d; this.url = u; this.clickurl = c; this.bid = b; }; function out_item (start,num,show ,link,orient) { start = start -1; var pos = start; var stop = start + num; if (stop > rec_array.length ) { stop = rec_array.length; } var out = ''; document.write('
| ');
if (show.search('t')!=-1)
{
if (link.search('t')!=-1)
{
var out = '' + rec_array[pos].title + '';
}
else
{
var out = rec_array[pos].title;
}
document.write('');
document.write(out);
document.write(' '); } if (show.search('d')!=-1) { if (link.search('d')!=-1) { var out = '' + rec_array[pos].description + ''; } else { var out = rec_array[pos].description; } document.write(out); document.write(' '); } if (show.search('u')!=-1) { if (link.search('u')!=-1) { var out = '' + rec_array[pos].url + ''; } else { var out = rec_array[pos].url; } document.write(out); document.write(' '); } document.write(' '); document.write(' | ');
if (orient == 'v')
{
document.write('