<!-- 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_UbCourseRes">');
		document.write ('<select name="selectedItem" show="3" size="1">');
			document.write ('<option value="false"> UB Course Resources'); 
			document.write ('<option value="false">____________________'); 
			document.write ('<option value="open,http://ublearns.buffalo.edu,UBlearns,800,600">UB<i>learns</i>'); 
			document.write ('<option value="open,http://myub.buffalo.edu/blkbrd,BIWI,800,600">BIWI - UB<i>learns</i> SetUp'); 
			document.write ('<option value="open,http://myub.buffalo.edu,MyUB,800,600">MyUB Information Portal'); 
			document.write ('<option value="open,http://www.buffalo.edu/iconnect/,iconnect@UB,800,600">iconnect@UB'); 
			document.write ('<option value="false">____________________'); 
			document.write ('<option value="open,http://wings.buffalo.edu/,Wings_Web_Server,800,600">Wings Web Server'); 
			document.write ('<option value="open,http://wings.buffalo.edu/help/ipguide/,Wings_IP_ Guide,800,600">&nbsp;&nbsp;&#149; Wings IP Guide'); 
			document.write ('<option value="open,http://www.buffalo.edu/toolbox/,UB_Web_Toolbox,800,600">&nbsp;&nbsp;&#149; UB Web Toolbox'); 
			document.write ('<option value="false">____________________'); 
			document.write ('<option value="open,http://www.cit.buffalo.edu/ubitname/,Accounts:_UBITname,800,600">Accounts: UBITname'); 
			document.write ('<option value="open,http://www.cit.buffalo.edu/mail/,Central_eMail,800,600">&nbsp;&nbsp;&#149; Central eMail'); 
			document.write ('<option value="open,http://remote.buffalo.edu/,Remote_Access,800,600">&nbsp;&nbsp;&#149; Remote Access'); 
			document.write ('<option value="false">____________________'); 
			document.write ('<option value="open,http://www.provost.buffalo.edu/policies/index.shtml,Provost,800,600">Office of the Provost'); 
			document.write ('<option value="open,http://src.buffalo.edu/policies/index.shtml,SRC,800,600">&nbsp;&nbsp;&#149; Academic Policies'); 
			document.write ('<option value="open,http://wings.buffalo.edu/it/,Provost,800,600">Office of the CIO'); 
			document.write ('<option value="open,http://www.itpolicies.buffalo.edu/index.shtml,SRC,800,600">&nbsp;&nbsp;&#149; IT Policies');  
		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 -->
