function QuickJump(form_sprachauswahl) 
{ 
	var Element = form_sprachauswahl.sprachauswahl.selectedIndex; 
	 
	if (form_sprachauswahl.sprachauswahl.options[Element].value != 0) 
	{ 
		location = form_sprachauswahl.sprachauswahl.options[Element].value; 
	} 
}
