var date = new Date();

var curr_date = date.getDate();
if (curr_date < 10)
{
curr_date = '0' + curr_date;
}
var curr_month = date.getMonth();
curr_month = curr_month + 1;
var curr_year = date.getFullYear();

date= curr_month + '/'+ curr_date + '/'+ curr_year;

//alert(date);

var output = '<p style="text-indent: 8px"><a href="http://www.classifiedsnetwork.com/cgi-bin/users/search.cgi?db=default&amp;search_and_display_db_button=on&amp;reverse=on&amp;date_begin='
output += date
output += '&amp;date_end='
output += date
output += '">See Classified Ads Sites Added Today</a></p>'

document.write(output)