/******************************************
 *       tidsskrift.dk                    *
 *    Det Kongelige Bibliotek,            *
 *    Nationalbiblioteket og              *
 *    Københavns Universitetsbibliotek    * 
 *    januar 2006                         *
 *                                        *
 * js file:  tidsskrift.js                *
 *                                        *
 * Last modified:                         *
 *    4/1-2006 by jac@kb.dk               *
 ******************************************/

var timer
function scrolltop()
{
scrollmenu.style.pixelTop=document.body.scrollTop
timer=setTimeout("scrolltop()",1)
}

function stoptimer()
{
clearTimeout(timer)
}

function HelpWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function clearSimpleForm(){
  document.getElementById("query").value="";
}

function clearAdvForm(){
  var tmp = document.getElementById("query").value;
  document.location='index.jsp?query='+tmp
}