// In this section we set up the content to be placed dynamically on the page.
// Customize movie tags and alternate html content below.

if (!useRedirect) {    // if dynamic embedding is turned on
  if(hasRightVersion) {  // if we've detected an acceptable version
    var oeTags = '<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'WIDTH="420" HEIGHT="420"'
    + 'CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<PARAM NAME="MOVIE" VALUE="/chat/app/flash/home.swf">'
    + '<PARAM NAME="PLAY" VALUE="true">'
    + '<PARAM NAME="LOOP" VALUE="false">'
    + '<PARAM NAME="QUALITY" VALUE="high">'
    + '<PARAM NAME="MENU" VALUE="false">'
    + '<PARAM NAME="BGCOLOR" VALUE=#FFFFFF>'
    + '<EMBED SRC="/chat/app/flash/home.swf"'
    + 'WIDTH="420" HEIGHT="420"'
    + 'PLAY="true"'
    + 'LOOP="false"'
    + 'QUALITY="high"'
    + 'MENU="false"'
    + 'BGCOLOR="#FFFFFF"'
    + 'TYPE="application/x-shockwave-flash"'
    + 'PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">'
    + '</EMBED>'
    + '</OBJECT>';

    document.write(oeTags);   // embed the flash movie
  } else {  // flash is too old or we can't detect the plugin
    // NOTE: height, width are required!
    var alternateContent = '<p class="body-000000-pad">Hi from Jamego, your global instant chat service.</p>' 
+ '<p class="body-000000-pad">With Jamego, you can use a PC or your mobile phone to touch base with anyone, anywhere, anytime, worldwide. Every member gets SMS alerts, plus a unique Jamego email account, a personal address book and instant access to a heap of chat rooms available to the Jamego chat station.</p>'
+'<p class="body-000000-pad">So, go ahead and <a href="/chat/servlet/menu?command=getprofileusr" class="body-FFFFFF">sign up now</a> to get instant access to one of the easiest, quickest and hassle free messenger services kicking around. All you need is a PC, a WAP capable mobile phone and some mates then you\'re off, mixing it up in chat rooms, or just holding your own one-to-one yak session using mobile chat.</p>'
+ '<p class="body-000000-pad">Get into it now with a <a href="/chat/servlet/menu?command=getprofilegold" class="body-FFFFFF">Jamego Jazz</a> membership or check out <a href="/chat/servlet/menu?command=getprofileusr" class="body-FFFFFF">FreeJam.</a><br><br><br></p>'
+ '<IMG SRC="/chat/app/flash/home-noflash.gif" WIDTH=420 HEIGHT=90 BORDER=0 VSPACE=0 HSPACE=0 ALIGN=ABSBOTTOM usemap="#flashmap">'
+ '<MAP  NAME="flashmap">'
+ '<AREA SHAPE="RECT"  COORDS="282,2,418,87"  HREF="/chat/servlet/menu?command=getprofileusr">'
+ '<AREA SHAPE="RECT"  COORDS="24,47,112,79"  HREF="http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash&P5_Language=English">'
+ '</MAP>'


;
    document.write(alternateContent);  // insert non-flash content
  }
}