function gelesen(){
	if(document.frmAnmeldung.cnt_agb.checked==true){
		document.frmAnmeldung.fSend.disabled=false;
	}else{
		document.frmAnmeldung.fSend.disabled=true;
	}
}

function buttonDis(){
	if(this.document.frmAnmeldung.cnt_agb.checked==false){
		this.document.frmAnmeldung.fSend.disabled=true;
	}
}

function clearBtn(){
	this.document.frmAnmeldung.fSend.disabled=true;
}

function NewWindow(mypage, myname, w, h, scroll) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function deleteAccount(frage,fehler){
  if(document.frmAccount.accDelete.checked==true){
  	return confirm(frage);
  }else{
  	alert(fehler);
  	return false;
  }
}

function makeStyle(i){
		if(window.opener!=null){
		  window.opener.document.frmCounter.cntStyle.value=i;
		  return false;
	}
}
