<!-- Distributed by http://www.hypergurl.com -->
  <!-- Hide from old browsers

  // Change the text in the variable message.
  // Don't forget to break all lines with a ^
  // If you do not place a ^ at the end of all the message, the
  // message will not repeat

  message     = ":: Selamat Datang Ke Program Kecemerlangan Ilmu dan Pendidikan [ PKIP ] 2007 ::^" +
                "^" +
                "^" +
                "^"
  scrollSpeed = 20 // lower is slower //
  lineDelay   = 1500

  // Do not change the text below //

  txt         = ""

  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }

  // Unhide -->
scrollText(0)

function hidestatus(){
window.status=''
return true
}
if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
document.onmouseover=hidestatus
document.onmouseout=hidestatus