function enableForwardButton(element,url,comfirmButton) {

	if(comfirmButton) {
		var active = 'http://tunerights.com/webbjokern/app/webroot/img/btnBekrafta.jpg';
		var inactive = 'http://tunerights.com/webbjokern/app/webroot/img/btnBekraftaIn.jpg';
	} else {
		var active = 'http://tunerights.com/webbjokern/app/webroot/img/btnNasta.jpg';
		var inactive = 'http://tunerights.com/webbjokern/app/webroot/img/btnNastaIn.jpg';
	}

	var scrollSize = element.getScrollSize().y - 370;
	var scrollPosition = element.getScroll().y;

	if(scrollSize == scrollPosition && $('btnNasta') && $('villkorCheckbox').checked) {
		$('btnNastaLink').set('href',url);
		$('btnNasta').set('src',active);
	} else if($('villkorCheckbox').checked == false) {
		$('btnNastaLink').removeProperty('href');
		$('btnNasta').set('src',inactive);
	}

}