<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function selectaplace(form) {
var appname= navigator.appName;
var appversion=parseInt(navigator.appVersion);
if (appname == "Netscape" && appversion >= 3) {
var formindex=form.select1.selectedIndex;
var storage=form.select1.options[formindex].text;
if (form.select1.options[formindex].value != "none") {
var msg=storage+"You are now being transferred to the -> "+storage;
for (var spot=0;spot<msg.length-storage.length;spot++) {
var x=msg.substring(spot,msg.length);
form.select1.options[formindex].text=x;
for(var d=0;d<150;d++) { };
}
parent.location=form.select1.options[formindex].value;
form.select1[formindex].text=storage;
} else  {
form.select1[formindex].text="Not a real option!";
for(var d=0;d<1250;d++) { };
form.select1[formindex].text=storage;
   }
}
else {
var formindex=form.select1.selectedIndex;
parent.location=form.select1.options[formindex].value;
   }
}
function makeMyMenu() {
document.write ('<form><select name="select1" onChange="selectaplace(this.form)" size=1>');
document.write ('<option value>WebCentral Shortcuts');
document.write ('<option value=https://webster.spjc.edu>Register Online');
document.write ('<option value=https://webster.spjc.edu>Check Your Grades');
document.write ('<option value=http://www.spjc.cc.fl.us/central/SSFA/index.htm>Scholarships/Fin. Aid');
document.write ('<option value=http://www.spjc.edu/central/lib>Library Online');
document.write ('<option value=http://it.spcollege.edu/contactdirectory/>Contact Faculty/Staff');
document.write ('<option value=http://www.spjc.edu/webcentral/info.htm>Contact Us');
document.write ('<option value=http://www.spjc.edu/webcentral/forms.htm>Forms Online');
document.write ('<option value=http://www.spcollege.edu/webcentral/distance.htm>Online Courses');
document.write ('<option value=http://www.spjc.edu/webcentral/admit/dates.htm>Academic Calendar');
document.write ('<option value=http://www.spjc.edu/webcentral/academic.htm>Programs');
document.write ('<option value=http://www.spjc.edu/webcentral/acad/cd.htm>Course Descriptions');
document.write ('<option value=http://www.spjc.edu/webcentral/acad/certs.htm>Certificates');
document.write ('<option value=http://www.spjc.edu/central/hr>Jobs Online');
document.write ('<option value=http://www.upcspc.com>Univ. Partnership Center');
document.write ('</select>');
document.write ('</form>');
}
makeMyMenu();

// End -->