function getTicks() {
var now = new Date();
return now.getTime();
}
// document.title = X3X.DisplayName;
X3X.ServerURL = "http://bos.justep.com"
var t;
t = getTicks();
X3X.ShowSplash();
var t1 = getTicks()-t;
t = getTicks();
X3X.UpdateVersion();
var t2 = getTicks()-t;
t = getTicks();
X3X.Init();
var t3 = getTicks()-t;
t = getTicks();
X3X.CloseSplash();
var t4 = getTicks()-t;
t = getTicks();
X3X.Run("", "", "", "");
var t5 = getTicks()-t;
var s = "ShowSplash=" + t1;
s = s+"\n\r"+"UpdateVersion=" + t2;
s = s+"\n\r"+"Init=" + t3;
s = s+"\n\r"+"CloseSplash=" + t4;
s = s+"\n\r"+"Run=" + t5;
alert(s);
function pause(numberMillis) {
var now = new Date();
var exitTime = now.getTime() + numberMillis;
while (true) {
now = new Date();
if (now.getTime() > exitTime)
return;
}
}