window.addEvent('domready', function(){
	doTipp = true;
	if (document.forms["registerForm"].elements["tx-srfeuserregister-pi1-usergroup-8"].checked == true) {
		hideWMTT()
		doTipp = false;
	}else{
		doTipp = true;
	}
	
	$('tx-srfeuserregister-pi1-usergroup-8').addEvent('click', function(e){
		if (document.forms["registerForm"].elements["tx-srfeuserregister-pi1-usergroup-8"].checked == true) {
			hideWMTT()
			doTipp = false;
		}else{
			doTipp = true;
		}
	});
	
	$('checkbox8').addEvents({
		'mouseenter': function(e){
			if (doTipp == true) {
				showWMTT('printabo_info');
			}
		},
		'mouseleave': function(e){
			if (doTipp == true) {
				hideWMTT();
			}
		}
	});
});



