function media_stats(strURL,IDP,IDM,IDHost,IDHostFrom) {
  var todayDate = new Date;
  var statURL = strURL + '/Pics/Stats.gif';
  statURL = statURL + '?domain=' + strURL; 
  statURL = statURL + '&IDM=' + IDM; 
  statURL = statURL + '&IDP=' + IDP; 
  statURL = statURL + '&IDHost=' + IDHost; 
  statURL = statURL + '&IDHostFrom=' + IDHostFrom; 
  statURL = statURL + '&IDSes=' + todayDate.getMonth() + todayDate.getDay() + todayDate.getHours() + todayDate.getMinutes() + todayDate.getSeconds()  + todayDate.getMilliseconds(); 

  document.write('<img src="' + statURL + '" width="1" height="1" />')
}


