function writeFlashSplash(browsa)
{
    if (browsa != 'unknown') {
	    document.write('<OBJECT codeBase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"\n');
	    document.write('height="262" width="495" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">\n');
	    document.write('<PARAM NAME="_cx" VALUE="20638">\n');
	    document.write('<PARAM NAME="_cy" VALUE="8229">\n');
	    document.write('<PARAM NAME="FlashVars" VALUE="">\n');
	    document.write('<PARAM NAME="Movie" VALUE="frisbees_main.swf">\n');
	    document.write('<PARAM NAME="Src" VALUE="frisbees_main.swf">\n');
	    document.write('<PARAM NAME="WMode" VALUE="transparent">\n');
	    document.write('<PARAM NAME="Loop" VALUE="-1">\n');
	    document.write('<PARAM NAME="Quality" VALUE="High">\n');
	    document.write('<PARAM NAME="SAlign" VALUE="">\n');
	    document.write('<PARAM NAME="Menu" VALUE="-1">\n');
	    document.write('<PARAM NAME="Base" VALUE="">\n');
	    document.write('<PARAM NAME="AllowScriptAccess" VALUE="">\n');
	    document.write('<PARAM NAME="Scale" VALUE="ShowAll">\n');
	    document.write('<PARAM NAME="DeviceFont" VALUE="0">\n');
	    document.write('<PARAM NAME="EmbedMovie" VALUE="0">\n');
	    document.write('<PARAM NAME="BGColor" VALUE="">\n');
	    document.write('<PARAM NAME="SWRemote" VALUE="">\n');
	    document.write('<PARAM NAME="MovieData" VALUE="">\n');
	    document.write('<PARAM NAME="SeamlessTabbing" VALUE="1">\n');
	    document.write('<PARAM NAME="Profile" VALUE="0">\n');
	    document.write('<PARAM NAME="ProfileAddress" VALUE="">\n');
	    document.write('<PARAM NAME="ProfilePort" VALUE="0">\n');
	    document.write('<embed wmode="transparent" src="frisbees_main.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer"\n');
	    document.write('type="application/x-shockwave-flash" width="495" height="262"></embed>\n');
	    document.write('</OBJECT>\n');
    }
    else {
        var arNums = [1,2,3];
        var arNums = randomize(arNums);
        var c = arNums[0];
        document.getElementById('flashsplash').innerHTML = '<img src="slides/frisbees_1.jpg">';
    }
}
function randomize(arNums) {
  var n = arNums.length;
  if (n == 0) return false;
  while (--n) {
     var j = Math.floor(Math.random() * (n + 1));
     var tempi = arNums[n];
     var tempj = arNums[j];
     arNums[n] = tempj;
     arNums[j] = tempi;
   }
   return arNums;
}

