//<!-- <SCRIPT LANGUAGE="JavaScript" SRC="http://ToUniteAmerica.com/jstap/feature.utilities.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]="Assembler: MVS Assembler Language";//title
Array2[load_index]="By K. McQuillen & Anne Prince";//author
Array3[load_index]="A reference manual that&#039s filled with examples. ";//descript
Array4[load_index]="0911625348";//isbn

load_index++
Array1[load_index]="Mainframe Assembler Programming";//title
Array2[load_index]="By William Qualls";//author
Array3[load_index]="Teaches you how program mainframe Assembler on your PC ";//descript
Array4[load_index]="0471249939";//isbn


load_index++
Array1[load_index]="Focus Made Easy: A Complete Focus Handbook for Users and Programmers";//title
Array2[load_index]="By Richard Taha";//author
Array3[load_index]="";//descript
Array4[load_index]="0133221083";//isbn


load_index++
Array1[load_index]="Getting Started With Microfocus";//title
Array2[load_index]="By E. Reed Doke";//author
Array3[load_index]="";//descript
Array4[load_index]="0471378852";//isbn

load_index++
Array1[load_index]="Microfocus Cobol Compiler for DOS";//title
Array2[load_index]="By Microfocus ";//author
Array3[load_index]="";//descript
Array4[load_index]="0471026050";//isbn


load_index++
Array1[load_index]="SAS Programming by Example";//title
Array2[load_index]="By Ron Cody";//author
Array3[load_index]="Examples to show you how to build SAS data sets.";//descript
Array4[load_index]="1555446817";//isbn


load_index++
Array1[load_index]="Microfocus Cobol Compiler for DOS";//title
Array2[load_index]="By Microfocus ";//author
Array3[load_index]="";//descript
Array4[load_index]="0471026050";//isbn


load_index++
Array1[load_index]="The Little SAS Book: A Primer, Second Edition";//title
Array2[load_index]="By Lora D. Delwiche";//author
Array3[load_index]="SAS/STAT, and getting your data into SAS ";//descript
Array4[load_index]="1580252397";//isbn


load_index++
Array1[load_index]="Applied Statistics and the SAS Programming Language";//title
Array2[load_index]="By Ronald P. Cody";//author
Array3[load_index]="Explains the language and how to use it to run programs for the mostly commonly used statistics.";//descript
Array4[load_index]="0137436424";//isbn


load_index++
Array1[load_index]="SAS Learning Edition 1.0";//title
Array2[load_index]="By SAS Institute";//author
Array3[load_index]="Software for learning SAS.";//descript
Array4[load_index]="1590470648";//isbn


load_index++
Array1[load_index]="Applied Statistics and the SAS Programming Language (5th Edition)";//title
Array2[load_index]="By Ronald P. Cody";//author
Array3[load_index]="The book is a good introduction to the SAS language.";//descript
Array4[load_index]="0131465325";//isbn


load_index++
Array1[load_index]="SAS Macro Programming Made Easy";//title
Array2[load_index]="By Michele Burlew";//author
Array3[load_index]="Everything about Macro Programming on SAS";//descript
Array4[load_index]="1580253431";//isbn


load_index++
Array1[load_index]="Step-By-Step Programming With Base SAS Software";//title
Array2[load_index]="By Jennifer L. Wilson";//author
Array3[load_index]="A how-to guide for basic programming with base SAS.";//descript
Array4[load_index]="1580257917";//isbn


load_index++
Array1[load_index]="Handbook of Statistical Analyses Using SAS, Second Edition";//title
Array2[load_index]="By Geoff Der";//author
Array3[load_index]="The complexities of SAS have been summarized in a useful book";//descript
Array4[load_index]="158488245X";//isbn

load_index++
Array1[load_index]="SAS Macro Language: Reference, Version 8";//title
Array2[load_index]="By SAS ";//author
Array3[load_index]="Complete description of Macro language features on SAS";//descript
Array4[load_index]="1580255221";//isbn

load_index++
Array1[load_index]="Carpenter's Complete Guide to the SAS Macro Language, 2nd Edition";//title
Array2[load_index]="By Art Carpenter";//author
Array3[load_index]="Many useable macros, macro functions, and macro tools for SAS programmers";//descript
Array4[load_index]="1590473841";//isbn

load_index++
Array1[load_index]="Proc SQL: Beyond the Basics Using SAS";//title
Array2[load_index]="By Kirk Paul Lafler";//author
Array3[load_index]="PROC SQL, SQL procedure language on SAS";//descript
Array4[load_index]="1590475348";//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


