// JavaScript Document
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="http://server.th.gretnadragons.org/~pabrownlee/Site/Welcome.html">Principal - Patti Brownlee');
document.write('<option value="http://www.gretnadragons.org/thes/Staff_Pages/">Teacher Webpages');
document.write('<option value="http://server.th.gretnadragons.org/~llynch/Welcome_/Welcome.html">Newsletter');
document.write('<option value="https://www.pearsonsuccessnet.com/snpapp/login/login.jsp">enVisionMATH');
document.write('<option value="http://www.gretnadragons.org/thes/office_folder/Student_Handbook/student_handbook.html">Student Handbook');
document.write('<option value="http://library.gretnadragons.org:591/profileentry/FMPro?-db=profileentry&-la%0Dy=Layout%20%231&-format=search.htm&-view">Student Portfolio');
document.write('<option value="http://server.th.gretnadragons.org/~jthompson">Thomas PTO');
document.write('</select>');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');