//<!-- <SCRIPT LANGUAGE="JavaScript" SRC="http://ToUniteAmerica.com/jstap/feature.tso.js"></SCRIPT>     -->

var Array1 = new Array(32)//title
var Array2 = new Array(32)//author
var Array3 = new Array(32)//descript
var Array4 = new Array(32)//isbn

var date = new Date()
var day = date.getDate()
var mon = date.getMonth()+1
var yr = date.getYear()
var n = date.getDay()
var load_index = 0; //counts how many books loaded
//document.write(day);
index = day; //max 31

//   &#039 '        &#034 "

Array1[load_index]="TSO: MVS TSO Part 1: Concepts and ISPF";//title
Array2[load_index]="By Doug Lowe";//author
Array3[load_index]="Introduction to TSO: the program development tool of choice for MVS. ";//descript
Array4[load_index]="0911625569";//isbn

load_index++
Array1[load_index]="TSO: MVS TSO, CLIST & REXX";//title
Array2[load_index]="By Doug Lowe";//author
Array3[load_index]="More about TSO/ISPF for developers. ";//descript
Array4[load_index]="0911625577";//isbn

load_index++
Array1[load_index]="TSO: MVS TSO/ISPF: Guide for Users & Developers";//title
Array2[load_index]="By Kurt Bosler";//author
Array3[load_index]="Clearly presented for COBOL programmers";//descript
Array4[load_index]="0070065659";//isbn


load_index++
Array1[load_index]="Using IBM&#039s ISPF Dialog Manager Under MVS, VM, and VSE";//title
Array2[load_index]="By Howard Fosdick";//author
Array3[load_index]="If you know TSO, this book will get you started.";//descript
Array4[load_index]="0442226268";//isbn




load_index++
Array1[load_index]="Practical TSO/ISPF for Programmers and the Information Center";//title
Array2[load_index]="By James G. Janossy";//author
Array3[load_index]="This book gets you quickly creating files, programs, submitting jobs and inspecting the results on MVS TSO/ISPF.";//descript
Array4[load_index]="0471633577";//isbn







//for randomness, leave this section in. for select by day, comment this out
var random0 = Math.random() * load_index;
index = Math.round(random0);
//{document.write('random number is ' + index + '<br>');}


// don't have enuf, so cut down index
if (index > load_index) index = load_index ;
//document.write("today is "+ index+ '<BR>');
//document.write("there are "+ load_index + " books loaded"+ '<BR>');


//to display only 1 out of 2 times
///var random3 = Math.random() * 20;
///random3 = Math.round(random3);
///if (random3 < 5) 
///{

//----------
///document.write('<blockquote><blockquote><blockquote>');
document.write('<!--link--><A HREF="http://www.amazon.com/exec/obidos/ASIN/' + Array4[index]+'/programmeuramericain-20" > ');
document.write('<!--pic--><IMG SRC="http://images.amazon.com/images/P/' + Array4[index]+'.01.LZZZZZZZ.gif"  HEIGHT=154 WIDTH=110 BORDER="0" HSPACE=10 ALIGN="LEFT" VSPACE=10>');
document.write('<!--title--><br clear="all"><FONT FACE="Arial" SIZE="4"><B>' + Array1[index]+'<BR></B></FONT></A><BR>');
document.write('<!--author--><FONT FACE="Arial" SIZE="2">'   + Array2[index]+'</FONT><P>');
document.write('<!--descript--><FONT FACE="Arial" SIZE="2">' + Array3[index]);
document.write('<!--link--><BR><A HREF="http://www.amazon.com/exec/obidos/ASIN/' + Array4[index]+'/programmeuramericain-20">')
document.write('Inspect/Order <I>' + Array1[index]+' </I> from Amazon.com</A></FONT>');
///document.write('</blockquote></blockquote></blockquote><br>');

///}//this goes at very last line


