function didYouPop(){
	window.open("/kids/pages/didyouknow.html",'didPop','width=345,height=325');
}

function spawn(poppedDocument,mainDocument)	{
	its0sil8=window.open(poppedDocument,'mainWindow','toolbar=no,scrollbars=auto,resizable=no,menubar=no,status=no,directories=no,location=no,width=345,height=325');
	window.location=mainDocument;
}

function getCalendarDate()
{
   var months = new Array(13);
   months[0]  = "January";
   months[1]  = "February";
   months[2]  = "March";
   months[3]  = "April";
   months[4]  = "May";
   months[5]  = "June";
   months[6]  = "July";
   months[7]  = "August";
   months[8]  = "September";
   months[9]  = "October";
   months[10] = "November";
   months[11] = "December";
   var now         = new Date();
   var monthnumber = now.getMonth();
   var monthname   = months[monthnumber];
   var monthday    = now.getDate();
   var year        = now.getYear();
   if(year < 2000) { year = year + 1900; }
   var dateString = monthname + 
                    ' ' + 
                    monthday + 
                    ', ' + 
                    year;
   document.write(dateString);
} // function getCalendarDate()
