/* ***************
Designer:	"Blue Ben W.";
Site:	"http://www.codeysworld.com/";
Path:	"scripts/";
File:	"librarian01.js";
Type:	"text/javascript" | "JavaScript";
Date:	"2006-09-02";

History: 
"2006-07-25"	Date Created; 
	sooner();
"2006-09-02"	Date Modified;
	usage comment;
*************** */

// sooner()
/* 
usage:
	onclick="sooner( this.innerHTML, 'Author Name', 'SOON' ); return false;" 
*/
function sooner( theTitle, theAuthor, theDate ) {
	var theString = '\"' + theTitle + '\"\n' + 
		' ~ by ' + theAuthor + ' ~ Available ' + theDate + '!' ; 
	alert( theString );
	return false;
} // sooner()

