new UvumiTextarea({
	selector:'textarea.withCounter',
	maxChar:1200
});
new UvumiTextarea({
	selector:'textarea.withoutCounter',
	maxChar:0
});
window.addEvent('domready',function(){
	$('download-form').addEvent('submit',function(){
		return this.getElements('input[type=checkbox]').some(function(input){
			return input.getProperty('checked');
		});
	});
});