//<!-- <SCRIPT LANGUAGE="JavaScript" SRC="http://ToUniteAmerica.com/jstap/feature.cics.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



Array1[load_index]="CICS: A How-to for COBOL programmers.";//title
Array2[load_index]="By David Shelby Kirk";//author
Array3[load_index]="Use CICS to develop or maintain applications in COBOL ";//descript
Array4[load_index]="047158021X";//isbn

load_index++
Array1[load_index]="Murach's CICS Desk Reference";//title
Array2[load_index]="By Menendez and Lowe";//author
Array3[load_index]="An easy-to-use CICS command reference";//descript
Array4[load_index]="1890774170";//isbn

load_index++
Array1[load_index]="Murach's CICS Desk Reference";//title
Array2[load_index]="By Menendez and Lowe";//author
Array3[load_index]="An easy-to-use CICS command reference";//descript
Array4[load_index]="1890774170";//isbn


load_index++
Array1[load_index]="Murach's CICS for the COBOL programmer";//title
Array2[load_index]="By Menendez and Lowe";//author
Array3[load_index]="Many examples of actual working code make the book a must";//descript
Array4[load_index]="189077409X";//isbn

load_index++
Array1[load_index]="Enterprise Javabeans for Z/OS and Os/390 Cics Transaction Server V2.2";//title
Array2[load_index]="By IBM Redbooks";//author
Array3[load_index]="An IBM Redbook packed with useful, hard-to find-information";//descript
Array4[load_index]="0738425044";//isbn

load_index++
Array1[load_index]="Java Connectors for Cics: Featuring the J2Ee Connector Architecture";//title
Array2[load_index]="By IBM Redbooks";//author
Array3[load_index]="Information hard to find anywhere else";//descript
Array4[load_index]="0738423904";//isbn

load_index++
Array1[load_index]="Cics Transaction Gateway V5 the Websphere Connector for Cics";//title
Array2[load_index]="By IBM Redbooks";//author
Array3[load_index]="Information hard to find anywhere else";//descript
Array4[load_index]="0738426687";//isbn

load_index++
Array1[load_index]="Accessing CICS Business Applications from the World Wide Web";//title
Array2[load_index]="By Guido De Simoni";//author
Array3[load_index]="About connectivity between the World Wide Web and CICS systems, security, data integrity issues.";//descript
Array4[load_index]="0135707714";//isbn

load_index++
Array1[load_index]="Distributed Processing in the CICS Environment";//title
Array2[load_index]="By A. Wipfler";//author
Array3[load_index]="Guide to CICS Intercommunication ";//descript
Array4[load_index]="0070711364";//isbn

load_index++
Array1[load_index]="CICS/Esa Primer";//title
Array2[load_index]="By James G. Janossy";//author
Array3[load_index]="Pub 95 by a known author. Very clear.";//descript
Array4[load_index]="0471309915";//isbn

load_index++
Array1[load_index]="CICS Programmer's Desk Reference";//title
Array2[load_index]="By Doug Lowe";//author
Array3[load_index]="BMS macros...CICS commands...AMS commands...JCL setups...ISPF and more. ";//descript
Array4[load_index]="0911625682";//isbn

load_index++
Array1[load_index]="CICS for the Cobol Programmer";//title
Array2[load_index]="By Doug Lowe";//author
Array3[load_index]="All the basics that apply to any CICS program. ";//descript
Array4[load_index]="0911625607";//isbn

load_index++
Array1[load_index]="CICS for the Cobol Programmer: An Advanced Course";//title
Array2[load_index]="By Doug Lowe";//author
Array3[load_index]="The advanced CICS features ";//descript
Array4[load_index]="0911625674";//isbn

load_index++
Array1[load_index]="CICS: A Guide to Internal Structure";//title
Array2[load_index]="By Eugene S. Hudders";//author
Array3[load_index]="For readers with experience in programming at the macro or command level.";//descript
Array4[load_index]="0471521728";//isbn

load_index++
Array1[load_index]="Micro Focus CICS Option";//title
Array2[load_index]="By Clayton McNally";//author
Array3[load_index]=" ";//descript
Array4[load_index]="0471584061";//isbn

load_index++
Array1[load_index]="Designing and Programming CICS Applications";//title
Array2[load_index]="By John Horswill";//author
Array3[load_index]="How to integrate mainframe systems with newer technologies ";//descript
Array4[load_index]="B00007FYDN";//isbn

load_index++
Array1[load_index]="Interface to CICS (TM) (Command Level), Version 12, Second Edition";//title
Array2[load_index]="By SAS Institute Inc";//author
Array3[load_index]="Using SYSTEM 2000 software under the latest CICS (command level) Interface ";//descript
Array4[load_index]="1555442293";//isbn

load_index++
Array1[load_index]="CICS Command Level Programming";//title
Array2[load_index]="By Alida M. Jatich";//author
Array3[load_index]="How to develop and maintain CICS code for maximum system effectiveness ";//descript
Array4[load_index]="0471528625";//isbn


load_index++
Array1[load_index]="CICS/VS Online System Design and Implementation Techniques";//title
Array2[load_index]="By David Lee";//author
Array3[load_index]="Covers CICS programming features needed in the on-line environment ";//descript
Array4[load_index]="0961181079";//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


