function resizeWinToThis(sX,sY) { window.resizeTo(sX,sY); window.moveTo(screen.availWidth - (screen.availWidth / 2 + (sX / 2)), screen.availHeight - (screen.availHeight / 2 + (sY / 2))); self.focus(); } function resizeWin(sX,sY) { // Width if (document.body && document.body.offsetWidth && document.body.offsetWidth != sX) { resizeWinToThis(sX,sY); } // Height if (document.body && document.body.offsetHeight && document.body.offsetHeight != sY) { resizeWinToThis(sX,sY); } } // Volltext Box function VBf() { var txt_set = 0; txt = document.getElementById('volltextBox').value; if (txt == "Stichwortsuche..." || txt == "SUCHWORT EINGEBEN !") { document.getElementById('volltextBox').value = ''; txt_set = 1; } if (txt == "" && txt_set == 0) { document.getElementById('volltextBox').value = 'Stichwortsuche...'; } } function VBo() { txt = document.getElementById('volltextBox').value; if (txt == "Stichwortsuche..." || txt == "") { document.getElementById('volltextBox').value = 'SUCHWORT EINGEBEN !'; } }