/**************************************************
/*     Copyright 2001 - XCENT - www.xcent.com     *
/**************************************************/

/*
   If you want QuickQuotes to display quotes in other locations on your
   site, be sure to set the qqURL setting below to the correct URL to reach
   your QuickQuotes installation
   Example:
         var qqURL = "http://www.example.com/QuickQuotes/";
*/


//Set the two dates
var millennium =new Date(2003, 0, 1) //Month is 0-11 in JavaScript
today=new Date()
//Get 1 day in milliseconds
var one_day=1000*60*60*24

//Calculate difference btw the two dates, and convert to days
//document.write(Math.ceil((today.getTime()-millennium.getTime())/(one_day))+
//" days has gone by since the millennium!")

var qqURL = "http://www.love-quotes.org/quotes/";

// Do not edit below this line
// var cachebuster=Math.ceil((today.getTime()-millennium.getTime())/(one_day));
   var cachebuster= (Math.ceil((today.getTime()-millennium.getTime())/(one_day))) - 1;


document.write ('<SCRIPT SRC="' + qqURL + '1-daily-quote.asp?a=' + cachebuster + '"></SCRIPT>');