function actionEvent(actionKey, actionValue){
	//alert(actionValue);

  if(actionKey == 'bildstorlek'){
	  document.dispatcherform.bildstorlek.value = actionValue;
	  document.dispatcherform.submit();
  }
  else if(actionKey == 'objekt'){
	  document.dispatcherform.objekt.value = actionValue;
	  document.dispatcherform.submit();
  }
  else if(actionKey == 'kategori'){
	  document.dispatcherform.kategori.value = actionValue;
	  document.dispatcherform.submit();
  }
  else if(actionKey == 'language'){
	  document.languageform.language.value = actionValue;
	  document.languageform.submit();
  }
  else if(actionKey == 'remove_bid'){
	  document.minabudform.myntid.value = actionValue;
	  document.minabudform.submit();
  }
}