function gonow(page) {
        if (page != "") {
                self.location=page
        } 
}

document.write('<form name="form1" method="post" action="">\n');
document.write('<select name="select" size="1" onChange="gonow(this.options[this.selectedIndex].value)" class="pullb">\n');

document.write('<option selected>Uprights Brands</option>\n');
document.write('<option value="">----------------------</option>\n');
document.write('<option value="upright.html#irmler">IRMLER</option>\n');
document.write('<option value="upright.html#RONISCH">R&Ouml;NISCH</option>\n');
document.write('<option value="upright.html#SAMICK">SAMICK</option>\n');
document.write('</select>\n');

document.write('</form>\n');

