<?php @include("/home/sites/stat/counter.php"); ?>




/*
     FILE ARCHIVED ON 23:16:51 Jun 30, 2007 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 11:54:45 Feb 21, 2011.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
<!--
// The message to be shown. Seperate multiple messages with a pipe symbol (|)
message = "Assalamualaikum wbt. | MyUniNet - Malaysian University Libraries & National Library Network | Welcome to MyUniNet Portal | Have a nice day! |.|..|...|....|.....|".split('|');
// This sets the width of the delimeter
delimeter = ' ';
string = '';
pos = 0;
arrayCount = 0;
// This sets the width of the field
sizer = " ";

function goTickAtOnce() {
var delay = 0;
string = message[arrayCount].substring(0,pos);

if (parseInt(pos + 1) > message[arrayCount].length) {
delay = 1000;
pos = 0;
if (parseInt(arrayCount + 1) < message.length) {
arrayCount++;
} else {
arrayCount = 0;
}
} else {
pos++;
delay = 150;
}

while (string.length < sizer.length) {
string += ' ';
}

pushContent();
setTimeout("goTickAtOnce()",delay);
}

function pushContent() {

if (document.all) {
document.all.ticker.innerHTML = '' + string + '';
} else if (document.getElementById && !document.all) {
document.getElementById('ticker').innerHTML = '' + string + '';
} else if (document.layers) {
with (document.layers.nsticker.document) {
open();
write('' + string + '');
close();
}
}
}

//-->

