// 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.pal.gretnadragons.org/~sallihajek/site/Welcome.html">Principal - Salli Hajek');
document.write('<option value="http://www.gretnadragons.org/pales/Staff_Pages/">Teacher Webpages');
document.write('<option value="http://server.pal.gretnadragons.org/~palesnews/Site/Palisades_Newsletter.html">Newsletter');
document.write('<option value="https://www.pearsonsuccessnet.com/snpapp/login/login.jsp">enVisionMATH');
document.write('<option value="http://www.gretnadragons.org/pales/links/handbook/student_handbook_0708.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.pal.gretnadragons.org/~palespto/ptohome/PTO_Welcome.html">Palisades PTO');
document.write('</select>');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');