// JavaScript Documentvar hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);if(hasRightVersion) {  // if we've detected an acceptable version    var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'    + 'width="900" height="169"'    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0">'    + '<param name="movie" value="http://www.mseg.udel.edu/navbar/load_directories.swf" />'	+ '<param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />'    + '<embed src="http://www.mseg.udel.edu/navbar/load_directories.swf" quality="high" bgcolor="#ffffff" '    + 'width="900" height="169" name="banner2" align="middle"'    + 'play="true"'    + 'loop="false"'    + 'quality="high"'    + 'allowScriptAccess="sameDomain"'    + 'type="application/x-shockwave-flash"'    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'    + '<\/embed>'    + '<\/object>';    document.write(oeTags);   // embed the flash movie  } else {  // flash is too old or we can't detect the plugin    var alternateContent = '<table width="900" border="0" cellpadding="0" cellspacing="0"'	+ 'onLoad="MM_preloadImages(\'http://www.mseg.udel.edu/navbar/gifs/directories/v3_03-over.gif\','	+ '\'http://www.mseg.udel.edu/navbar/gifs/directories/v3_04-over.gif\','	+ '\'http://www.mseg.udel.edu/navbar/gifs/directories/v3_05-over.gif\','	+ '\'http://www.mseg.udel.edu/navbar/gifs/directories/v3_06-over.gif\','	+ '\'http://www.mseg.udel.edu/navbar/gifs/directories/v3_09-over.gif\')">'	+ '<tr><td colspan="6"> <img src="http://www.mseg.udel.edu/navbar/gifs/directories/v3_01.gif" width="900" height="37" alt=""></td></tr>'	+ '<tr><td><img src="http://www.mseg.udel.edu/navbar/gifs/directories/v3_02.gif" width="67" height="20" alt=""></td>'	+ '<td><a href="http://www.mseg.udel.edu/faculty_research/index.php" '	+ 'onMouseOver="MM_swapImage(\'03\',\'\',\'http://www.mseg.udel.edu/navbar/gifs/directories/v3_03-over.gif\',1)" '	+ 'onMouseOut="MM_swapImgRestore()">'	+ '<img name="03" src="http://www.mseg.udel.edu/navbar/gifs/directories/v3_03.gif" width="161" height="20" border="0" alt=""></a></td>'	+ '<td><a href="http://www.mseg.udel.edu/news_events/index.php"'	+ 'onMouseOver="MM_swapImage(\'04\',\'\',\'http://www.mseg.udel.edu/navbar/gifs/directories/v3_04-over.gif\',1)"'	+ 'onMouseOut="MM_swapImgRestore()">'	+ '<img name="04" src="http://www.mseg.udel.edu/navbar/gifs/directories/v3_04.gif" width="122" height="20" border="0" alt=""></a></td>'	+ '<td><a href="http://www.mseg.udel.edu/academics/index.php" '	+ 'onMouseOver="MM_swapImage(\'05\',\'\',\'http://www.mseg.udel.edu/navbar/gifs/directories/v3_05-over.gif\',1)" '	+ 'onMouseOut="MM_swapImgRestore()"><img name="05" src="http://www.mseg.udel.edu/navbar/gifs/directories/v3_05.gif" width="98" height="20" border="0" alt=""></a></td>'	+ '<td><a href="http://www.mseg.udel.edu/directories/index.php" onMouseOver="MM_swapImage(\'06\',\'\',\'http://www.mseg.udel.edu/navbar/gifs/directories/v3_06-over.gif\',1)" '	+ 'onMouseOut="MM_swapImgRestore()"><img name="06" src="http://www.mseg.udel.edu/navbar/gifs/directories/v3_06.gif" width="106" height="20" border="0" alt=""></a></td>'	+ '<td> <img src="http://www.mseg.udel.edu/navbar/gifs/directories/v3_07.gif" width="346" height="20" alt=""></td></tr>'	+ '<tr><td colspan="6"><img src="http://www.mseg.udel.edu/navbar/gifs/directories/v3_08.gif" width="900" height="45" alt=""></td></tr>'	+ '<tr><td> <a href="http://www.mseg.udel.edu/" onMouseOver="MM_swapImage(\'09\',\'\',\'http://www.mseg.udel.edu/navbar/gifs/directories/v3_09-over.gif\',1)" '	+ 'onMouseOut="MM_swapImgRestore()"><img name="09" src="http://www.mseg.udel.edu/navbar/gifs/directories/v3_09.gif" width="67" height="67" border="0" alt=""></a></td>'	+ '<td colspan="5"><img src="http://www.mseg.udel.edu/navbar/gifs/directories/v3_10.gif" width="833" height="67" alt=""></td></tr></table>';    document.write(alternateContent);  // insert non-flash content  }// -->