Well, it depends upon just what you want to do. To start with, just change this section:
HTML Code:
<!--HTML for gallery control options below. Remove checkboxes or entire outer DIV if desired -->
<div id="controldiv" style="display:none" class="gallerycontroller">
<form name="gallerycontrol">
<select class="gallerycontroller" size="3" name="menu" onChange="manualcontrol(this.options.selectedIndex)">
<option>Blank form</option>
</select><br>
Auto: <input type="radio" checked name="mode" value="auto" onClick="preparemode('auto')"> Manual: <input type="radio" name="mode" value="manual" onClick="preparemode('manual')">
</form>
</div>
to:
HTML Code:
<!--HTML for gallery control options below. Remove checkboxes or entire outer DIV if desired -->
<div id="controldiv" style="display:none" class="gallerycontroller">
<form name="gallerycontrol">
<select style="display:none;" class="gallerycontroller" size="3" name="menu" onChange="manualcontrol(this.options.selectedIndex)">
<option>Blank form</option>
</select><br>
Auto: <input type="radio" checked name="mode" value="auto" onClick="preparemode('auto')"> Manual: <input type="radio" name="mode" value="manual" onClick="preparemode('manual')">
</form>
<a href="#" onclick="manualcontrol(0);return false;">0</a><br>
<a href="#" onclick="manualcontrol(1);return false;">1</a><br>
<a href="#" onclick="manualcontrol(2);return false;">2</a><br>
</div>
That will leave you with the auto/manual choice and give you links. The link text can be whatever you like. The links won't work while the display is on auto. You could get rid of that part and have it always be manual by changing this:
HTML Code:
Auto: <input type="radio" checked name="mode" value="auto" onClick="preparemode('auto')"> Manual: <input type="radio" name="mode" value="manual" onClick="preparemode('manual')">
to:
HTML Code:
<div style="display:none;">Auto: <input type="radio" name="mode" value="auto" onClick="preparemode('auto')"> Manual: <input checked type="radio" name="mode" value="manual" onClick="preparemode('manual')"></div>
Bookmarks