 function email_mit_bild (info,vorne,hinten,bild)
 {
      document.writeln("<a href=mailto:"+vorne+"@"+hinten+"?subject="+info+"><img border=0 src="+bild+" width=20 height=16></a>");
return
}

function email (info,vorne,hinten,anwen)
 {
      document.writeln("<a class=haupt href=mailto:"+vorne+"@"+hinten+"?subject="+info+"><b>"+anwen+"</b></a>");
return
}


function winopen(datei){
  window.open(datei,"FensterName","scrollbars=yes,width=600,height=500")
}
//change title text to your own
    var titletext="Aloisiuskolleg Bonn"
    var thetext="Aloisiuskolleg"
    var started=false
    var step=0
    var times=1
    if (titletext=="")
      titletext=document.title;

    function welcometext()
    {
      times--
      if (times==0)
      {
        if (started==false)
        {
          started = true;
          document.title = titletext;
          setTimeout("anim()",1);
        }
        thetext = titletext;
      }
    }

    function showstatustext(txt)
    {
      thetext = txt;
      setTimeout("welcometext()",4000)
      times++
    }

    function anim()
    {
      step++
      if (step==7) {step=1}
      if (step==1) {document.title='>==='+thetext+'===<'}
      if (step==2) {document.title='=>=='+thetext+'==<='}
      if (step==3) {document.title='>=>='+thetext+'=<=<'}
      if (step==4) {document.title='=>=>'+thetext+'<=<='}
      if (step==5) {document.title='==>='+thetext+'=<=='}
      if (step==6) {document.title='===>'+thetext+'<==='}
      setTimeout("anim()",200);
    }

