<!-- Menu Pop Down Writer: Copyright 2004, University at Buffalo Educational Technology Center. All rights reserved. 
//This script was written by Thomas Slomka, tslomka@buffalo.edu, to manage page navigation for staff and faculty web based teaching tools.
//require companion script "menuPopDownAplace.js"
//You may reuse this script provided this copyright statement remains intact 
//

// writes menu to page.  This is where you add the actual menu parts.
function makeMyMenu() {
	document.write ('<form  name="popDownMenu_WebResources">');
		document.write ('<select name="selectedItem" show="3" size="1">');
			document.write ('<option value="false"> Web Resources'); 
			document.write ('<option value="false">____________________'); 
			document.write ('<option value="open,http://webmonkey.com,Webmonkey,800,600">Web Monkey'); 
			document.write ('<option value="open,http://www.w3.org/MarkUp/,WC3_HTML,800,600">WC3 HTML'); 
			document.write ('<option value="open,http://www.w3.org/Style/CSS/learning,WC3_CSS,800,600">WC3 CSS'); 
			document.write ('<option value="open,http://www.webteacher.org/,The_Web_Teacher,800,600">The Web Teacher'); 
			document.write ('<option value="open,http://www.echoecho.com/school.htm,EchoEcho,800,600">EchoEcho Tutorials'); 
			document.write ('<option value="open,http://www.w3schools.com/,W3_Schools,800,600">W3 Schools'); 
			document.write ('<option value="open,http://www.m-w.com/dictionary.htm,Websters,800,600">Websters Dictionary'); 
		document.write ('</select>');
		document.write ('\&nbsp\;<input type="image" src="http://wings.buffalo.edu/services/etclearn/art/go.gif" border="0" alt="GO" align="center" onmousedown="javascript:goaplace(this.form);">');
	document.write ('</form>');
		
}


//calls makeMyMenu function
makeMyMenu();



// End  Menu Pop Down Writer -->
