<!-- 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_MoreInfo">');
		document.write ('<select name="selectedItem" show="1" size="1">');
			document.write ('<option value="false"> ...For More Information'); 
			document.write ('<option value="false">____________________'); 
			document.write ('<option value="go,/services/etclearn/forms/idHelp.html,ID_help,800,600">Ask a Question about'); 
			document.write ('<option value="go,/services/etclearn/forms/idHelp.html,ID_help1,800,600">teaching & learning'); 
			document.write ('<option value="go,/services/etclearn/forms/idHelp.html,ID_help2,800,600">with technology.'); 
			document.write ('<option value="false">____________________'); 
			document.write ('<option value="go,/services/etclearn/forms/clinic.html,In_help,800,600">Request Individualized'); 
			document.write ('<option value="go,/services/etclearn/forms/clinic.html,In_help1,800,600">or group training.'); 
			document.write ('<option value="false">____________________'); 
			document.write ('<option value="go,mailto:etc@buffalo.edu,ETC_eMail,800,600">eMail the ETC</i>'); 
			document.write ('<option value="go,mailto:tslomka@buffalo.edu,tslomka,800,600">eMail Thom. Slomka'); 
			document.write ('<option value="go,http://wings.buffalo.edu/~tslomka,tslomkaMeet,800,600">Meet with Thom. Slomka'); 
			document.write ('<option value="open,http://www.buffalo.edu/directory/,Ub_Directory,800,600">UB Directory (LDAP)');
		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 -->
