function  no_link(id)
{    
      document.getElementById(id).style.display='block';


}
function popup(w,h,site) {
        x = screen.availWidth/2-w/2;
        y = screen.availHeight/2-h/2;
        quelltext = '<!-- www.larabad.de - Banner --><a href="http://www.larabad.de/" target="_blank"><img border="0" src="http://partner.larabad.de/'+site+'"/></a><!-- ENDE www.larabad.de Banner -->';
        text = '<b>Rechte Maustaste -> Bild Speichern unter</b><img src="http://partner.larabad.de/'+site+'"/><p>Oder kopiere diesen Quelltext:<textarea cols="50" rows="5">'+quelltext+'</textarea></p>';
        var popupWindow = window.open(
            '','','width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y);
        popupWindow.document.write(text);
      }
function fadeIn(name) {
        
        getElementById(name).style.filter="Alpha(opacity="+oc+", finishopacity=0, style=2)"
        if(oc!=100) setTimeout('oc++;fadeIn()',40);
        else 
        setTimeout('',5000);
      }
function fadeOut(name) {
        getElementById(name).style.filter="Alpha(opacity="+oc+", finishopacity=0, style=2)"
        if(oc!=0) setTimeout('oc--;fadeOut()',40);
        else setTimeout('fadeIn()',1000);
      }


