function openwin(url,w,h)
{
        neuesfenster=window.open(url,"","width="+w+",height="+h+",top=100,left=100,toolbar=no,status=no,scrollbars=yes");
}

var change=1;

function changeTitle(){
   	first="ComputerClub 2";
   	second="Der Audiocast mit Wolfgang Back und Wolfgang Rudolph";
   	document.title=(document.title==first)?second:first;
   	setTimeout("changeTitle()",3000);
}

//changeTitle();