// JavaScript Document
<!--
    function popup_screen(f, w, h) {
      window.open('showscreen.php?file='+f, '_screen', 'width='+w+',height='+h+',nonresizable,scrollbars=yes');
    }  

    function GoForIt(wohin) {
      if(wohin == "nolink")
        return
      else	
        window.location.href = wohin;
    }

    function popup_message(p) {
      window.open('message.php?p='+p, '_message', 'width=500,height=620,nonresizable,scrollbars=yes');
    }  
//-->