  PLT_BackColor = "";
  PLT_ForeColor= "navy";
  PLT_DisplayFormat = "%%S%% sn";
  PLT_FontPix = "12";
  PLT_DisplayElementID = "display_here";

dt=new Date();
document.onreadystatechange=function() {
  if (document.readyState=="complete") {
    if ((PLT_Span=document.getElementById(PLT_DisplayElementID)) == null) {
      document.body.insertBefore(document.createElement("br"));
      PLT_Span = document.body.insertBefore(document.createElement("span"));
    }
    PLT_DisplayFormat = PLT_DisplayFormat.replace(/%%S%%/g, ((new Date() - dt)/1000));
    PLT_Span.style.Color = PLT_ForeColor;
    PLT_Span.style.backgroundColor = PLT_BackColor;
    PLT_Span.style.fontSize = PLT_FontPix + "px";
	document.getElementById(PLT_DisplayElementID).innerHTML=PLT_DisplayFormat; 
    //PLT_Span.innerText = PLT_DisplayFormat;
  }
}

