//To create menus, call makeMenu with these values: //the menu id - should be a sequential number - don't skip any //the top and left coordinates of where the menu should appear //a list of links in this format: // link title,0,link URL //add 24 to each y coordinate makeMenu(1,197,235); makeMenu(2,197,261,"What is the Mallinckrodt Institute of Radiology?",0,"internal.asp?NavID=5","What is Neuroradiology and who are neuroradiologists",0,"internal.asp?NavID=6","How Neuroradiology is organized at Washington University",0,"internal.asp?NavID=7","How do I get to Neuroradiology Section?",0,"internal.asp?NavID=8"); makeMenu(3,197,287); makeMenu(4,197,313); makeMenu(5,197,339); makeMenu(6,197,365,"Resident Training",0,"internal.asp?NavID=12","Diagnostic Fellowship Training",0,"internal.asp?NavID=13","Interventional Fellowship Training",0,"internal.asp?NavID=14","Visiting Fellowships",0,"internal.asp?NavID=15"); makeMenu(7,197,391); makeMenu(8,197,417); makeMenu(9,197,443,"MIR Statistics",0,"internal.asp?NavID=19","MIR Resources & Environment",0,"internal.asp?NavID=20","Neuroradiology Resources",0,"internal.asp?NavID=21"); makeMenu(10,197,469,"Brain",0,"internal.asp?NavID=23","Spine",0,"internal.asp?NavID=24","Neck-ENT",0,"internal.asp?NavID=25"); makeMenu(11,197,495); makeMenu(12,197,521); makeMenu(13,197,547); makeMenu(14,197,573,"Information for Patients & Referring Physicians",0,"internal.asp?NavID=74","Current Research",0,"internal.asp?NavID=75"); //set these color for your background or rollover colors //standard pop menu background color bgcolor = "#FFFFFF"; //left menu background color bgcolor2 = "#660000"; //top pop menu roll color rollcolor1 = "#336699"; //left pop menu roll color rollcolor2 = "#660000"; //left menu roll color rollcolor3 = "#993333"; writeMenus(); startup();