//lines starting with two slashes are comments/instructions
//Comic Genesis dropdown developed by Steve Tonks, modified for educational use by Scott Maddix
// 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>Other comic tutorials: <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

// --------------- Drawing tutorials ----------------

document.write('<OPTION VALUE="">Drawing Tutorials<\/OPTION>');

document.write('<OPTION VALUE="http://mcduffies.comicgenesis.com/tutorface.html">&nbsp; &nbsp; &nbsp; Drawing the Human Face (McDuffies)<\/OPTION>');
document.write('<OPTION VALUE="http://mcduffies.comicgenesis.com/tutorbody.html">&nbsp; &nbsp; &nbsp; Drawing the Human Body (McDuffies)<\/OPTION>');

// --------------- Writing tutorials ----------------

document.write('<OPTION VALUE="">&nbsp<\/OPTION>');
document.write('<OPTION VALUE="">Writing Tutorials<\/OPTION>');

document.write('<OPTION VALUE="http://mcduffies.comicgenesis.com/tutorwriting.html">&nbsp; &nbsp; &nbsp; Writing a Story (McDuffies)<\/OPTION>');
document.write('<OPTION VALUE="http://mcduffies.comicgenesis.com/tutorcharacter.html">&nbsp; &nbsp; &nbsp; Characterisation (McDuffies)<\/OPTION>');
document.write('<OPTION VALUE="http://mcduffies.comicgenesis.com/tutorjokes.html">&nbsp; &nbsp; &nbsp; Writing a Gag (McDuffies)<\/OPTION>');
document.write('<OPTION VALUE="http://fullcircle.comicgenesis.com/characterdevelopment.htm">&nbsp; &nbsp; &nbsp; Character Development (Sheree Rehema)<\/OPTION>');
document.write('<OPTION VALUE="http://www.between-worlds.com/tutorials/writing_show_and_tell.shtml">&nbsp; &nbsp; &nbsp; Show and Tell (Joel Fagin)<\/OPTION>');
document.write('<OPTION VALUE="http://www.between-worlds.com/tutorials/writing_subconscious.html">&nbsp; &nbsp; &nbsp; The Subconscious (Joel Fagin)<\/OPTION>');


// --------------- Miscelaneous tutorials ----------------

document.write('<OPTION VALUE="">&nbsp<\/OPTION>');
document.write('<OPTION VALUE="">Miscelaneous Tutorials<\/OPTION>');

document.write('<OPTION VALUE="http://www.between-worlds.com/tutorials/comic_webcomic_basics.shtml">&nbsp; &nbsp; &nbsp; Webcomic Basics (Joel Fagin)<\/OPTION>');
document.write('<OPTION VALUE="http://www.between-worlds.com/tutorials/comic_attracting_readers.shtml">&nbsp; &nbsp; &nbsp; Attracting Readers (Joel Fagin)<\/OPTION>');
document.write('<OPTION VALUE="http://www.between-worlds.com/tutorials/comic_fans_and_feedback.shtml">&nbsp; &nbsp; &nbsp; Fans and Feedback (Joel Fagin)<\/OPTION>');
document.write('<OPTION VALUE="http://sixbyninecollege.comicgenesis.com/project2.html">&nbsp; &nbsp; &nbsp; Ambers Webcomic Tutorial (by Amber Marshall)<\/OPTION>');
document.write('<OPTION VALUE="http://www.thejaded.co.uk/studio/index.html">&nbsp; &nbsp; &nbsp; The Studio (various tutorials by Phalanx)<\/OPTION>');
document.write('<OPTION VALUE="http://www.between-worlds.com/tutorials/comic_website_design.shtml">&nbsp; &nbsp; &nbsp; Comic Webpage Design (Joel Fagin)<\/OPTION>');
document.write('<OPTION VALUE="http://www.between-worlds.com/tutorials/comic_support_and_elevation.shtml">&nbsp; &nbsp; &nbsp; Support and Elevation (Joel Fagin)<\/OPTION>');
document.write('<OPTION VALUE="http://mcduffies.comicgenesis.com/tutorpage.html">&nbsp; &nbsp; &nbsp; Composing a Page (McDuffies)<\/OPTION>');
document.write('<OPTION VALUE="http://stripedb.freeshell.org/printing_comics.html">&nbsp; &nbsp; &nbsp; Printing Comics (by John Fortman)<\/OPTION>');
document.write('<OPTION VALUE="http://www.medialia-comic.com/tutorial.htm">&nbsp; &nbsp; &nbsp; Sprite Comic Tutorial (by Rianeva)<\/OPTION>');


// --------------- Tricks and Techniques ----------------

document.write('<OPTION VALUE="">&nbsp<\/OPTION>');
document.write('<OPTION VALUE="">Tricks and Techniques<\/OPTION>');

document.write('<OPTION VALUE="http://fourmages.comicgenesis.com/speech.html">&nbsp; &nbsp; &nbsp; Speech Balloons in Photoshop (Ruxen)<\/OPTION>');
document.write('<OPTION VALUE="http://chaoticcomics.comicgenesis.com/webcomicinstructions.htm">&nbsp; &nbsp; &nbsp; How to Make a Photo Comic (Chaotic Comics)<\/OPTION>');


// --------------- Makings of ----------------

document.write('<OPTION VALUE="">&nbsp<\/OPTION>');
document.write('<OPTION VALUE="">Makings of<\/OPTION>');

document.write('<OPTION VALUE="http://magica.comicgenesis.com/About.html">&nbsp; &nbsp; &nbsp; "Deus ex Magica" in Flash (Jonny Deutsch)<\/OPTION>');
document.write('<OPTION VALUE="http://feyenne.comicgenesis.com/howto.html">&nbsp; &nbsp; &nbsp; "Feyenne" (J. Harper)<\/OPTION>');
document.write('<OPTION VALUE="http://www.nightgig.com/Drawnsword/tutorialp1.html">&nbsp; &nbsp; &nbsp; "Drawnsword" (Karl Kuras)<\/OPTION>');


// --------------- comicgenesis ----------------

document.write('<OPTION VALUE="">&nbsp<\/OPTION>');
document.write('<OPTION VALUE="">Comic Genesis<\/OPTION>');

document.write('<OPTION VALUE="http://cgwiki.comicgenesis.com/index.php/Main_Page">&nbsp; &nbsp; &nbsp; The Comic Genesis Wiki<\/OPTION>');

document.write('<OPTION VALUE="http://decypher.comicgenesis.com/keendrop/scripts.htm">&nbsp; &nbsp; &nbsp; Dropdown tutorial (Phactorri)<\/OPTION>');
document.write('<OPTION VALUE="http://www.thejaded.co.uk/workshop/index.html">&nbsp; &nbsp; &nbsp; The Workshop (Phalanx)<\/OPTION>');
document.write('<OPTION VALUE="http://gear.comicgenesis.com/">&nbsp; &nbsp; &nbsp; The Gear (Phalanx)<\/OPTION>');

document.write('<OPTION VALUE="">&nbsp<\/OPTION>');

document.write('<OPTION VALUE="http://www.between-worlds.com/tutorials/comic_tutorial_dropdown.html">Tutorial Dropdown homepage<\/OPTION>');

document.writeln('<\/SELECT><\/FORM>');