function formHandler(){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

document.write('<form name="form">');
document.write('<select name="site" size=1>');
document.write('<option value="">Go to....');
document.write('<option value="pspgifs5.htm">Transparent Gifs ~ 5');
document.write('<option value="resize.htm">Resizing Images ~  5');
document.write('<option value="pspbackgrounds.htm">Seamless Backgrounds ~ 5');
document.write('<option value="pspdividers.htm">Creating Dividers ~ 5');
document.write('<option value="pspbuttons.htm">Creating Buttons ~ 5');
document.write('<option value="pspcircles.htm">Perfect Circles ~ 5');
document.write('<option value="text.htm">Marbled Text ~ 5');
document.write('<option value="text2.htm">Cutout Text ~ 5');
document.write('<option value="pspbordered.htm">Bordered Backgrounds ~ 5');
document.write('<option value="pspcurved.htm">Curved Backgrounds ~ 5');
document.write('<option value="pspimagemap.htm">Image Maps ~ 5');
document.write('<option value="interfaces.htm">Toolbars/Menus Vertical ~ 5');
document.write('<option value="interface2.htm">Toolbars/Menus Horizontal ~ 5');
document.write('<option value="tvbackground.htm">TV Background ~ 5');
document.write('<option value="photo.htm">Photo Manipulation ~ 5');
document.write('</select>');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');