<!-- Begin
var osd = " "
osd +="s-security.net  - ";
osd +="Secured services  - Our technology at your most profit ";
osd +="     ";
var timer;
var msg = "";
function scrollMaster () {
msg = customDateSpring(new Date())
clearTimeout(timer)
msg += ", time:" + showtime() + " -" + osd
for (var i= 0; i < 100; i++){
msg = " " + msg;
}
scrollMe()
}
function scrollMe(){
window.status = msg;
msg = msg.substring(1, msg.length) + msg.substring(0,1);
timer = setTimeout("scrollMe()", 200);
}
function showtime (){
var now = new Date();
var hours= now.getHours();
var minutes= now.getMinutes();
var seconds= now.getSeconds();
var months= now.getMonth();
var dates= now.getDate();
var years= now.getYear();
var timeValue = ""
timeValue += ((months >9) ? "" : " ")
timeValue += ((dates >9) ? "" : " ")
timeValue = ( months +1)
timeValue +="/"+ dates
timeValue +="/"+  years
var ap="h"
if (hours == 12) {
ap = "h"
}
var timeValue2 = " " + hours
timeValue2 += ((minutes < 10) ? ":0":":") + minutes + " " + ap
return timeValue2;
}
function MakeArray(n) {
this.length = n
return this
}
monthNames = new MakeArray(12)
monthNames[1] = "january"
monthNames[2] = "february"
monthNames[3] = "march"
monthNames[4] = "april"
monthNames[5] = "may"
monthNames[6] = "june"
monthNames[7] = "july"
monthNames[8] = "august"
monthNames[9] = "september"
monthNames[10] = "october"
monthNames[11] = "november"
monthNames[12] = "december"
daysNames = new MakeArray(7)
daysNames[1] = "Sunday"
daysNames[2] = "Monday"
daysNames[3] = "Tuesday"
daysNames[4] = "Wednesday"
daysNames[5] = "Thursday"
daysNames[6] = "Friday"
daysNames[7] = "Saturday"
function customDateSpring(oneDate) {
var theDay = daysNames[oneDate.getDay() +1]
var theDate =oneDate.getDate()
var theMonth = monthNames[oneDate.getMonth() +1]
var dayth=""
if ((theDate == 1) || (theDate == 21) || (theDate == 31)) {
dayth="";
}
if ((theDate == 2) || (theDate ==22)) {
dayth="";
}
if ((theDate== 3) || (theDate  == 23)) {
dayth="";
}
return theDay + " " + theDate + ". " + theMonth
}
scrollMaster();
// End -->

