myMsg = "                                                                      "
i=0
function scrollMsg() {
  frontPart = myMsg.substring(i,myMsg.length)
  backPart = myMsg.substring(0,i)
  window.status = frontPart + backPart
  if (i < myMsg.length) {
    i++
  }
  else {
    i = 0
  }
  setTimeout("scrollMsg()",100)
}
window.onload=scrollMsg

function extlink(page) {
OpenWin = window.open(page, "CtrlWindow", "top=0, left=0, width=800, height=600, toolbar=yes, scrollbars=yes, location=yes, menubar=yes, status=yes, resizable=yes, copyhistory=yes");
OpenWin.focus()
}

function sample(page) {
OpenWin = window.open(page, "sampWindow", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no, width=500, height=250");
}

function spress(page) {
OpenWin = window.open(page, "newsWindow", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no, width=500, height=600");
}


function slideshow(page) {
OpenWin = window.open(page, "SampWindow", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no, width=436, height=330");
}