function MiniDate(param)
{
if (window.XMLHttpRequest)
  {
  xmlhttp=new XMLHttpRequest();
  }
else
  {
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
if(xmlhttp) 
{
 xmlhttp.open("POST","modules/mod_minidate/tmpl/default.php");
 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
 xmlhttp.onreadystatechange = function()
 {
  if (xmlhttp.readyState == 4 && xmlhttp.status == 200) 
  {
   document.getElementById("MiniDate").innerHTML = xmlhttp.responseText;
  }
 }
 xmlhttp.send(param);
}
}
