// /***********************************************
// * Basic Calendar-By Brian Gosselin at http://scriptasylum.com/bgaudiodr/
// * Script featured on Dynamic Drive (http://www.dynamicdrive.com)
// * This notice must stay intact for use
// * Visit http://www.dynamicdrive.com/ for full source code
// ***********************************************/

var todaydate=new Date()
var curmonth=todaydate.getMonth()+1 //get current month (1-12)
var curyear=todaydate.getFullYear() //get current year
document.write(buildCal(curmonth ,curyear, "main", "month", "daysofweek", "days", 1));

