function goto_page (select) {
	var value = select.options[select.options.selectedIndex].value;
	if (value != "void") {
		select.form.reset();
		parent.location.href = value;
	}
}
function all_products () {
	document.write('<form action=""><select name="Products" onchange="goto_page(this)" width="250">');
	document.write('<option value="void" selected="selected">[Produkte]</option>');

	document.write('<optgroup label="iPhone Apps">');
	document.write('<option value="cococalc.html">CocoCalc - Software Cost Calculator</option>');
	
	document.write('<optgroup label="Anwendungen f&uuml;r die digitale Fotografie">');
	document.write('<option value="murphy.html">Murphy - creating web galleries</option>');
	document.write('<option value="rod.html">Rod - creating contact sheets</option>');
	document.write('<option value="edna.html">Edna - Editing meta data</option>');
	document.write('<option value="seymour.html">Seymour - black and white filter</option>');
	document.write('<option value="lenny.html">Lenny - creating movies from still images</option>');
	document.write('<option value="coppo.html">Coppo - the media file management tool</option>');
	document.write('<option value="bestcamera.html">Best Camera</option>');
	document.write('<optgroup label="Automator Aktionen f&uuml;r die digitale Fotografie">');
	document.write('<option value="ccs_de.html">Create Contact Sheets</option>');
	document.write('<option value="cwg_de.html">Create Web Gallery</option>');
	document.write('<option value="cqt.html">Create Video Show</option>');
	document.write('<option value="cmd_de.html">Change Meta Data</option>');
	document.write('<option value="bwf.html">Black &amp; White Filter</option>');
	document.write('<optgroup label="Plug-Ins und Collections">');
	document.write('<option value="bwc.html">Bridge Workflow Collections</option>');
	document.write('<option value="pfap_de.html">Portfolio Action Pack</option>');
	document.write('<optgroup label="3D Design Anwendungen">');
	document.write('<option value="bacon.html">Bacon - Modeling und Animation</option>');
	document.write('<option value="pepper.html">Pepper - Rendering</option>');
	document.write('</optgroup>');
	document.write('</select></form>');
}
all_products();      
