function formHandlerg(){
var URLa = document.formg.siteg.options[document.formg.siteg.selectedIndex].value;
window.location.href = URLa;
}
document.write('<form name="formg">');
document.write('<select class=textbox name=siteg size=1>');
document.write('<option style="background-color: #ffffcc;  font-family: Lucida Sans;" value="">Go Here!');
document.write('<option style="background-color: #ffffcc;  font-family: Lucida Sans;" value=""> ------------------');
document.write('<option value="/index.html">&nbsp;&nbsp;Home');
document.write('<option value="/members/index.html">&nbsp;&nbsp;Members Area');
document.write('<option value="/forums/index.html">&nbsp;&nbsp;Forums');
document.write('<option value="/caresheets/index.html">&nbsp;&nbsp;Care Sheets');
document.write('<option value="/membersignup.html">&nbsp;&nbsp;Register');
document.write('<option value="/photogallery/index.html">&nbsp;&nbsp;Photo Gallery');
document.write('<option value="/articles/index.html">&nbsp;&nbsp;Articles');
document.write('<option value="/cgi-bin/newposts.cgi">&nbsp;&nbsp;Todays Posts');
document.write('<option value="/forums/archive.html">&nbsp;&nbsp;Forums Archive');
document.write('<option value="/cgi-bin/photos/photos.cgi">&nbsp;&nbsp;Photo Server');
document.write('<option value="/cgi-bin/login.cgi">&nbsp;&nbsp;Log In');
document.write('<option value="/cgi-bin/logout.cgi">&nbsp;&nbsp;Log Out');
document.write('<option value="/polls/index.html">&nbsp;&nbsp;Polls');
document.write('<option value="/cgi-bin/checkforums.cgi">&nbsp;&nbsp;Check Forums');
document.write('</select>');
document.write('&nbsp;&nbsp;');
document.write('<input class=textbox type=button value="Go" onClick="javascript:formHandlerg()">');
document.write('</form>');
