Скопируйте код в то место, где хотите вставить строку текущей даты, кликнув по которой откроется календарь. 
 -------------------------------------------------------------------------------------------- 
 <html >  <head> 
 <link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/dojo/1.4/dijit/themes/tundra/tundra.css"> 
 <style type="text/css"> 
 body, html { font-family:helvetica,arial,sans-serif; font-size:90%; } 
 </style> 
 <style type="text/css"> 
 .tundra table.dijitCalendarContainer { margin: 25px auto; } #formatted 
 { text-align: center; } 
 #calend {display:none;} 
 </style> 
 </head> 
 <body class="tundra "> 
 <center> 
 <p id="formatted" onclick="sho_w()"></p> 
 <div id=calend dojoType="dijit._Calendar" onChange="dojo.byId('formatted').innerHTML=dojo.date.locale.format(arguments[0], 
 {formatLength: 'full', selector:'date'})" align=center> 
 </div> 
 </body> 
 <script> 
 function sho_w() { 
 if(document.getElementById('calend').style.display=='inline') { 
 document.getElementById('calend').style.display='none' 
 } else { 
 document.getElementById('calend').style.display='inline' 
 } 
 } 
 </script> 
 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/dojo/1.4/dojo/dojo.xd.js" 
 djConfig="parseOnLoad: true"> 
 </script> 
 <script type="text/javascript"> 
 dojo.require("dijit.dijit"); // loads the optimized dijit layer 
 dojo.require("dijit._Calendar"); 
 </script> 
 <!--<br><a style="font-size:10px;" href=http://kachay.ucoz.org/forum/8>Бесплатные рабочие js скрипты</a>--> 
 </html>