function selectForm() {
	switch(jQuery('#anzeige_aufgeben').val()) {
		case '1':
			window.location.href = '/index.php?id=151';
		break;
		case '2':
			window.location.href = '/index.php?id=167';
		break;
		case '4':
			window.location.href = '/index.php?id=175';
		break;
		case '5':
			window.location.href = '/index.php?id=173';
		break;
		case '6':
			window.location.href = '/index.php?id=153';
		break;
	}
}
function drukuj() {
	return window.print();
}

jQuery(document).ready(function() {
	jQuery('.tx-quickpoll-pi1 form').live('submit', function(event) {
		var radios = jQuery(this).find('input[type=radio]');
		var isEmpty = true;
		jQuery.each(radios, function(i, n) {
			if(jQuery(n).attr('checked') == true) {
				isEmpty = false;
			}
		});
		
		if(isEmpty) {
			event.preventDefault();
			alert('Bitte wählen Sie eine Antwort.');
			return false;
		}
	});
});
