//
// check if flash should be shown or not
//

var doflash = false;

var player = new MM_FlashInfo();
if (player.installed) {
  if (player.version && player.version >= 6) { // NEEDS FLASH VERSION 6 OR GREATER
    doflash = true;
  }
}

//
// write HTML for flash movie or HTML alternative
//

function writeflash() {
  if (doflash) {
    document.write("<div id='divflash'>");
    document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' id='homeflash' width='900' height='539'>");
    document.write("<param name='movie' value='flavin.swf' /><param name='play' value='true' /><param name='loop' value='true' /><param name='quality' value='high' /><param name='menu' value='false' /><param name='bgcolor' value='#706d55' />");
    document.write("<embed src='flavin.swf' play='true' loop='true' quality='high' menu='false' bgcolor='#706d55' swLiveConnect='false' width='900' height='539' name='homeflash' type='application/x-shockwave-flash'>");
    document.write("</embed></object></div>");
  }
  else {
    document.writeln("<div id='divlogo'><img src='img/home/logo.jpg' width='900' height='58' alt='Flavin Architects LLC' title='' /></div>");
    document.writeln("<div id='divprimarynav'>");
    document.writeln("<div id='divnav_corporate'><a href='corporate/index.html'><img src='img/home/corporate.gif' width='112' height='20' border='0' alt='Corporate' title='' /></a></div>");
    document.writeln("<div id='divnav_residential'><a href='residential/index.html'><img src='img/home/residential.gif' width='114' height='20' border='0' alt='Residential' title='' /></a></div>");
    document.writeln("<div id='divnav_about'><a href='about/index.html'><img src='img/home/about.gif' width='86' height='20' border='0' alt='About' title='' /></a></div>");
    document.writeln("<div id='divnav_contact'><a href='contact/index.html'><img src='img/home/contact.gif' width='86' height='20' border='0' alt='Contact' title='' /></a></div></div>");
    document.writeln("<div id='divphotoleft'><img src='img/home/photo_left.jpg' width='399' height='539' alt='' /></div>");
    document.writeln("<div id='divphotoright'><img src='img/home/photo_right.jpg' width='403' height='539' alt='' /></div>");
  }
}

