<!--
//Code shows today's calendar girl of the day.


var CalDate = new Date( );

var CalDay = CalDate.getDate();
var CalMonth = CalDate.getMonth() + 1;
var CalYear = CalDate.getFullYear();
var CalFileName = CalYear + "-" + CalMonth + "-" + CalDay ;

document.write("<a href=\"http://365hotdates.blogspot.com/2008/01/home-page.html\"><img border=\"0\" src=\"http://www.bikini-beaches.com/" + CalYear + "/" + CalMonth + "/" +CalFileName + ".jpg\" height=\"200\" alt=\"Get a new hot girl 365 days a year on your web page\"></a>");

-->