// JavaScript Document
function submitValues(g) {
	var fObj = document.forms[0].elements[g];
	var t = new Array();
	
	for(i=0;i<fObj.length;i++) {
		if(fObj.options[i].selected) {
			
			/*
			value = fObj.options[i].value;
			ziel = 'http://'+window.location.hostname+window.location.pathname+'?tx_ffdownload_pi1[group]='+value;
			*/
			ziel = fObj.options[i].value;
			
			window.location.replace(ziel);
		}
	}
	
}
