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 onChange="formHandler(this.form)">');
document.write('<option value="index.html">Where do you want to go next at CORHIAN.COM?');
document.write('<option value="index.html">Welcome Page');
document.write('<option value="index1.html">Home Page');
document.write('<option value="bioginfo/azlookup.html">AZ Lookup Page');
document.write('<option value="clsndx.html">Class Pages');
document.write('<option value="javascript:NewWindow(\'pictures/scrapbook/index.html\')">General Scrapbook');
document.write('<option value="javascript:NewWindow(\'almawords.html\')">Alma Mater-Two Verse With Words');
document.write('<option value="links.html">Links Page');
document.write('<option value="http://www.rpdms.com">RPDMS.com-Primary sponsor of CORHIAN site.');
document.write('<option value="spnsrs.html">Sponsors Page');
document.write('<option value="history.html">History Page');
document.write('<option value="nwsevnts.html">News Page');
document.write('<option value="sitemap.html">Site Map');
document.write('<option value="what.html">What is Corhian.com?');
document.write('<option value="why.html">Why was Corhian.com started?');
document.write('<option value="when.html">When was Corhian.com started?');
document.write('<option value="who.html">Who started Corhian.com?');
document.write('</select>');
document.write('</form>');
