function loadTimeObj(){
this.s=new Date()
this.m=new String()
this.o=function(){
var t=this.t
if(t=="input")this.toI()
if(t=="layer")this.toL()
if(t=="alert")this.toA()
if(t=="var")this.toV()}
this.setOutput=function(t,n){
this.t=t
if (typeof(name)!="undefined")this.n=n}
this.onLoad=function(){
this.e=new Date
var e=this.e
var s=this.s
var l=""
var m=e.getMinutes()-s.getMinutes()
if (m!=0)l+=m+(m==1?" min, ":" mins, ")
var s=e.getSeconds()-s.getSeconds()
l+=s+(s==1?" sec":" secs")
this.m=l
this.o()}
this.toL=function(){
if(document.getElementById&&document.getElementById(this.n))
document.getElementById(this.n).innerHTML=this.m
else if(document.all&&document.all[this.n])
document.all[this.n].innerHTML=this.m
else if(document.layers&&document.layers[this.n]){
document.layers[this.n].document.open()
document.layers[this.n].document.write(this.m)
document.layers[this.n].document.close()}}
this.toI=function(){eval("document."+this.n+".value=this.m")}
this.toA=function(){alert(this.m)}
this.toV=function(){
eval(this.n+"=this.m")}
return this}
loadTime=new loadTimeObj()