           function reloadgump(){
                bildurl="";
                gender=document.all.gender.options[document.all.gender.selectedIndex].value;
                gumpindex="";
                if(gender=="male"){
                    gumpindex="12";
                }
                else{
                    gumpindex="13";
                }
                gumphue=document.all.gumphues.options[document.all.gumphues.selectedIndex].value;
                gumpis="1";
                gumpfemale="0";
                
                if(document.all.race.options[document.all.race.selectedIndex].value!="nichts"){
                    gumpindex=gumpindex+","+document.all.race.options[document.all.race.selectedIndex].value;
                    gumphue=gumphue+","+document.all.gumphues.options[document.all.gumphues.selectedIndex].value;
                    gumpis=gumpis+",0";
                    if(gender=="male"){
                        gumpfemale=gumpfemale+",0";
                    }
                    else{
                        gumpfemale=gumpfemale+",1";
                    }
                }

                if(document.all.haargump.options[document.all.haargump.selectedIndex].value!="nichts"){
	                gumpindex=gumpindex+","+document.all.haargump.options[document.all.haargump.selectedIndex].value;
    	            gumphue=gumphue+","+document.all.haarhues.options[document.all.haarhues.selectedIndex].value;
        	        gumpis=gumpis+",0";
            	    if(gender=="male"){
	                	gumpfemale=gumpfemale+",0";
    	            }
        	        else{
            		    gumpfemale=gumpfemale+",1";
	                }
                }
                
                
                if(document.all.bartgump.options[document.all.bartgump.selectedIndex].value!="nichts"){
                    gumpindex=gumpindex+","+document.all.bartgump.options[document.all.bartgump.selectedIndex].value;
                    gumphue=gumphue+","+document.all.barthues.options[document.all.barthues.selectedIndex].value;
                    gumpis=gumpis+",0";
                    if(gender=="male"){
                        gumpfemale=gumpfemale+",0";
                    }
                    else{
                        gumpfemale=gumpfemale+",1";
                    }
                }
                

                bildurl="http://www.siebenwind.de/custom/gumpreader/gumpreader.php?index="+gumpindex+"&hue="+gumphue+"&isgump="+gumpis+"&female="+gumpfemale;
                document.images.gumpimage.src=bildurl;
            }
