//<!-- <SCRIPT LANGUAGE="JavaScript" SRC="http://ToUniteAmerica.com/jstap/feature.asp.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]="Programming Microsoft ASP.NET";//title
Array2[load_index]="By Dino Esposito";//author
Array3[load_index]="The inner workings of ASP.NET technology and hands-on code examples";//descript
Array4[load_index]="0735619034";//isbn

load_index++
Array1[load_index]="ASP.NET Unleashed, Second Edition";//title
Array2[load_index]="By Stephen Walther";//author
Array3[load_index]="An example-packed tutorial on beginning through advanced topics in ASP.NET programming";//descript
Array4[load_index]="067232542X";//isbn

load_index++
Array1[load_index]="ASP.NET For Dummies";//title
Array2[load_index]="By Bill Hatfield";//author
Array3[load_index]="ASP.NET examples, tools, and more on CD-ROM.";//descript
Array4[load_index]="0764508660";//isbn

load_index++
Array1[load_index]="Essential ASP.NET With Examples in C#";//title
Array2[load_index]="By Fritz Onion";//author
Array3[load_index]="All of the important topics of ASP.NET development";//descript
Array4[load_index]="0201760401";//isbn

load_index++
Array1[load_index]="Microsoft ASP.NET Step by Step";//title
Array2[load_index]="By G. Andrew Duthie";//author
Array3[load_index]="Using ASP.NET with Visual Basic .NET";//descript
Array4[load_index]="0735612870";//isbn

load_index++
Array1[load_index]="ASP.NET Data Web Controls Kick Start";//title
Array2[load_index]="By Scott Mitchell";//author
Array3[load_index]="How to implement Web Controls like Repeater, Data List, and Data Grid.";//descript
Array4[load_index]="0672325012";//isbn

load_index++
Array1[load_index]="ASP in a Nutshell, 2nd Edition";//title
Array2[load_index]="By A. Keyton Weissinger";//author
Array3[load_index]="A reference book for looking up object usage. It is for IIS 5.0 and ASP 3.0.";//descript
Array4[load_index]="1565928431";//isbn

load_index++
Array1[load_index]="Programming Data Driven Web Applications with ASP.NET";//title
Array2[load_index]="By Donny Mack";//author
Array3[load_index]="Examples of everything you need to create web applications.";//descript
Array4[load_index]="0672321068";//isbn

load_index++
Array1[load_index]="Building Web Solutions with ASP.NET and ADO.NET";//title
Array2[load_index]="By Dino Esposito";//author
Array3[load_index]="Building Web Solutions with ASP.NET and ADO.NET";//descript
Array4[load_index]="0735615780";//isbn

load_index++
Array1[load_index]="Beginning Active Server Pages 3.0";//title
Array2[load_index]="By David Buser";//author
Array3[load_index]="Introduction to ASP for Windows 2000.";//descript
Array4[load_index]="0764543636";//isbn

load_index++
Array1[load_index]="Pro Asp.net 2.0 In C# ";//title
Array2[load_index]="By Matthew MacDonald";//author
Array3[load_index]="How to use ASP.NET to create dynamic web pages on the Windows platform.";//descript
Array4[load_index]="1590594967";//isbn

load_index++
Array1[load_index]="ASP.NET Cookbook";//title
Array2[load_index]="By Geoffrey T. LeBlond";//author
Array3[load_index]="Building dynamic websites on Microsoft web servers with ASP.NET.";//descript
Array4[load_index]="0596003781";//isbn

load_index++
Array1[load_index]="ASP.NET 2.0: A Developer's Notebook";//title
Array2[load_index]="By Wei-Meng Lee";//author
Array3[load_index]="Hands-on projects you can develop and increase your knowledge of ASP.NET 2.0.";//descript
Array4[load_index]="0596008120";//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


