//lines starting with two slashes are comments/instructions
//Comic Genesis dropdown developed by Steve Tonks, modified for educational use by Scott Maddix, again modified EPCHC
// Web Site: gear.comicgenesis.com
//This code is freely distributable but is prohibited from being resold for profit
//DO NOT CHANGE LINES UNLESS INSTRUCTED

function goto_URL(object) {
    window.location.href = object.options[object.selectedIndex].value;
}

//IMG SRC URL should point to the absolute URL of the dropdown graphic
//The HREF tag should show where clicking on the image should take you, 
//usually to a sign-up spot

document.writeln('<FORM>Choose a chart: <SELECT NAME="selectName" onChange="goto_URL(this.form.selectName)">');

//If nothing is inside the quotes, the text is not a link
//If there is a meta-character included in the name, precede the character 
//with a backslach "\" to keep it from interfering with the script
//add new lines as needed, based on these

// --------------- Charts for Hillsborough County River Survey Chart Options ----------------
document.write('<OPTION VALUE="">&nbsp;<\/OPTION>');
document.write('<OPTION VALUE="">Hillsborough River<\/OPTION>');




document.write('<OPTION VALUE="water_monitoring/survey_charts/4Edo.pdf">&nbsp; &nbsp; &nbsp; DO<\/OPTION>');
document.write('<OPTION VALUE="water_monitoring/survey_charts/4Esal.pdf">&nbsp; &nbsp; &nbsp; Salinty<\/OPTION>');
document.write('<OPTION VALUE="water_monitoring/survey_charts/4Esecchi.pdf">&nbsp; &nbsp; &nbsp; Secchi Depth<\/OPTION>');
document.write('<OPTION VALUE="water_monitoring/survey_charts/4Etemp.pdf">&nbsp; &nbsp; &nbsp; Temperature<\/OPTION>');


// --------------- Charts for Palm River ----------------
document.write('<OPTION VALUE="">&nbsp;<\/OPTION>');
document.write('<OPTION VALUE="">Palm River<\/OPTION>');




document.write('<OPTION VALUE="water_monitoring/survey_charts/4Fdo.pdf">&nbsp; &nbsp; &nbsp; DO<\/OPTION>');
document.write('<OPTION VALUE="water_monitoring/survey_charts/4Fsal.pdf">&nbsp; &nbsp; &nbsp; Salinty<\/OPTION>');
document.write('<OPTION VALUE="water_monitoring/survey_charts/4Fsecchi.pdf">&nbsp; &nbsp; &nbsp; Secchi<\/OPTION>');
document.write('<OPTION VALUE="water_monitoring/survey_charts/4Ftemp.pdf">&nbsp; &nbsp; &nbsp; Temprature<\/OPTION>');

// --------------- Charts for Alafia River ----------------
document.write('<OPTION VALUE="">&nbsp;<\/OPTION>');
document.write('<OPTION VALUE="">Alafia River<\/OPTION>');




document.write('<OPTION VALUE="water_monitoring/survey_charts/4Gdo.pdf">&nbsp; &nbsp; &nbsp; DO<\/OPTION>');
document.write('<OPTION VALUE="water_monitoring/survey_charts/4Gsal.pdf">&nbsp; &nbsp; &nbsp; Salinty<\/OPTION>');
document.write('<OPTION VALUE="water_monitoring/survey_charts/4Gsecchi.pdf">&nbsp; &nbsp; &nbsp; Secchi<\/OPTION>');
document.write('<OPTION VALUE="water_monitoring/survey_charts/4Gtemp.pdf">&nbsp; &nbsp; &nbsp; Temprature<\/OPTION>');



// --------------- Charts for Little Manatee River ----------------
document.write('<OPTION VALUE="">&nbsp;<\/OPTION>');
document.write('<OPTION VALUE="">Little Manatee River<\/OPTION>');




document.write('<OPTION VALUE="water_monitoring/survey_charts/4Hdo.pdf">&nbsp; &nbsp; &nbsp; DO<\/OPTION>');
document.write('<OPTION VALUE="water_monitoring/survey_charts/4Hsal.pdf">&nbsp; &nbsp; &nbsp; Salinty<\/OPTION>');
document.write('<OPTION VALUE="water_monitoring/survey_charts/4Hsecchi.pdf">&nbsp; &nbsp; &nbsp; Secchi<\/OPTION>');
document.write('<OPTION VALUE="water_monitoring/survey_charts/4Htemp.pdf">&nbsp; &nbsp; &nbsp; Temprature<\/OPTION>');


// --------------- Charts for Big Bend Area ----------------
document.write('<OPTION VALUE="">&nbsp;<\/OPTION>');
document.write('<OPTION VALUE="">Big Bend Area<\/OPTION>');




document.write('<OPTION VALUE="water_monitoring/survey_charts/4Ido.pdf">&nbsp; &nbsp; &nbsp; DO<\/OPTION>');
document.write('<OPTION VALUE="water_monitoring/survey_charts/4Isal.pdf">&nbsp; &nbsp; &nbsp; Salinty<\/OPTION>');
document.write('<OPTION VALUE="water_monitoring/survey_charts/4Isecchi.pdf">&nbsp; &nbsp; &nbsp; Secchi<\/OPTION>');
document.write('<OPTION VALUE="water_monitoring/survey_charts/4Itemp.pdf">&nbsp; &nbsp; &nbsp; Temprature<\/OPTION>');




document.writeln('<\/SELECT><\/FORM>');
