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="">Site Navigation....');
document.write('<option value="index.html">Home');
document.write('<option value="about.html">About Me');
document.write('<option value="litters.html">Litters');
document.write('<option value="ladies.html">Ladies');
document.write('<option value="ladies2.html">Ladies-2');
document.write('<option value="ladies3.html">Ladies-3');
document.write('<option value="Retired.html">Ladies Retired');
document.write('<option value="fellas.html">Fellas');
document.write('<option value="fellas2.html">Fellas-2');
document.write('<option value="fellas3.html">Fellas-3');
document.write('<option value="thunder.html">Thunders Page');
document.write('<option value="cubby.html">Cubbys Page');
document.write('<option value="bobby.html">Bobbys Page');
document.write('<option value="molly.html">Mollys Page');
document.write('<option value="teddy.html">Teddys Page');
document.write('<option value="porsche.html">Porsches Page');
document.write('<option value="puppies.html">Puppies');
document.write('<option value="puppies2.html">Puppies-2');
document.write('<option value="puppies3.html">Puppies-3');
document.write('<option value="gone.html">Rainbow Bridge');
document.write('<option value="gone2.html">Rainbow Bridge-2');
document.write('<option value="blue.html">Blues Page');
document.write('<option value="snaps.html">Snaps Page');
document.write('<option value="album.html">Photo Ablum');
document.write('<option value="album2.html">Photo Ablum-2');
document.write('<option value="album3.html">Photo Ablum-3');
document.write('<option value="album4.html">Photo Ablum-4');
document.write('<option value="album5.html">Photo Ablum-5');
document.write('<option value="album6.html">Photo Ablum-6');
document.write('<option value="pedigrees.html">Pedigrees');
document.write('<option value="webrings.html">Webrings');
document.write('<option value="links.html">Links');
document.write('<option value="map.html">Site Map');
document.write('<option value="mailto:linda@cherubchows.com">Email Linda');
document.write('<option value="http://guestbooks.pathfinder.gr/read/cherubchows">View My GuestBook');
document.write('<option value="http://guestbooks.pathfinder.gr/sign/cherubchows">Sign My Guestbook');
document.write('</select>');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');
