<!--Hide JavaScript from Java-Impaired Browsers

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="191" height="134"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="/Flash/Comstar-Nav-Portfolio.swf" /><PARAM NAME=FlashVars VALUE="jumpToFrame='+ Portfolio +'" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" />'
    + '<embed src="/Flash/Comstar-Nav-Portfolio.swf" FlashVars="jumpToFrame='+ Portfolio +'" quality="high" bgcolor="#000000" '
    + 'width="191" height="134" name="Comstar-Nav-Portfolio" 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 border="0" cellpadding="3" cellspacing="0" width="165">\r\n      <tr>\r\n        <td valign="top" width="165" colspan="2">\r\n        <p class="NavTitle">Portfolio<\/td>\r\n      <\/tr>\r\n      <tr>\r\n        <td valign="top" width="15">&nbsp;<\/td>\r\n        <td valign="top" width="150"><a class="Nav" href="\/Portfolio\/Case_Studies.asp">Case Studies<\/a><br>\r\n        <a class="Nav" href="\/Portfolio\/Website_Gallery.asp">Website Gallery<\/a><br>\r\n        <a class="Nav" href="\/Portfolio\/Application_Demos.asp">Application Demos<\/a><\/td>\r\n      <\/tr>\r\n      <tr>\r\n        <td valign="top" width="15">&nbsp;<\/td>\r\n        <td valign="top" width="150">&nbsp;<\/td>\r\n      <\/tr>\r\n    <\/table>';
    document.write(alternateContent);  // insert non-flash content
  }

//End Hiding Script-->