function weiterselect(auswahl) {
	for(i=0; i<document.forms['selectStore'].elements[auswahl].length; ++i) {
		if(document.forms['selectStore'].elements[auswahl].options[i].selected == true) {
			//self.location.href = document.forms['selectStore'].elements[auswahl].options[i].value;
			neuesFenster = window.open(document.forms['selectStore'].elements[auswahl].options[i].value, "kaufhof");
			neuesFenster.focus();
		}
	}
}
