function quickfill() {
var quick_kat = '&tx_ipshop_pi1[quick_kategorie]='+document.getElementById('quick_kategorie').value;
var quick_col = '&tx_ipshop_pi1[quick_color]='+document.getElementById('quick_color').value;
var quick_mat = '&tx_ipshop_pi1[quick_material]='+document.getElementById('quick_material').value;
var quick_gen = '&tx_ipshop_pi1[quick_gender]='+document.getElementById('quick_gender').value;
if(document.getElementById('quick_optical').checked==true) {
	var quick_opt = '&tx_ipshop_pi1[quick_optical]=on';
} else {
	var quick_opt = '&tx_ipshop_pi1[quick_optical]=off';
}
var quick_text = '&tx_ipshop_pi1[quick_text]='+document.getElementById('quick_text').value;
var total = 'index.php?id=44&tx_ipshop_pi1[quicksubmit]=1'+quick_kat+quick_col+quick_mat+quick_gen+quick_opt+quick_text;
document.getElementById('quicksearch').action = total;
document.getElementById('quicksearch').submit();
}

function quick_key(myfield,e) {
var keycode;
if (window.event) keycode = window.event.keyCode;
else if (e) keycode = e.which;
else return true;

if (keycode == 13)
   {
   quickfill();
   return false;
   }
else
   return true;
}
