// Copyright (C) 2007 bloominggardens.us. All Rights Reserved.

function Init()
{
   SetSize(); 
}

//from http://www.howtocreate.co.uk/tutorials/javascript/browserwindow 
function SetSize()
{ 
    var w=h=myWidth=myHeight=0;
    if( typeof( window.innerWidth ) == 'number' )
    {
        //Non-IE
        myWidth = window.innerWidth - 16;
        myHeight = window.innerHeight - 16;
    } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) )
    {
        //IE 6+ in 'standards compliant mode'
        myWidth = document.documentElement.clientWidth - 16;
        myHeight = document.documentElement.clientHeight - 12;
    } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) )
    {
        //IE 4 compatible
        myWidth = document.body.clientWidth - 16;
        myHeight = document.body.clientHeight - 12;
    }

    if(myHeight > myWidth*600/400) {
        // size to fit width
        w = myWidth;
        h = w*400/600;
    } else {
        // size to fit height
        h = myHeight
        w = h*600/400;
    }

    var gametext = '<div class="ce"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="' + w +'" height="'+h+'"><param name="menu" value="false" /><param name="movie" value="http://www.miniclip.com/swfcontent/freegames/bloominggardens.swf" /><param name="quality" value="high" /><embed src="http://www.miniclip.com/swfcontent/freegames/bloominggardens.swf" menu="false" quality="high" width="'+w+'" height="'+h+'" name="acidfactory" align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object></textarea></div>';
    //document.body.innerHTML = '<div class="ce"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+w+'" height="'+h+'"><param name="movie" value="./swf/battleships.swf" /><param name="quality" value="high" /><param name="menu" value="false" /><embed src="./swf/battleships.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+w+' height="'+h+'" menu="false"></embed></object></div>';
//document.body.innerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="+'+w+'" height="'+h+'"> <param name="movie" value="battleships.swf" /> <param name="quality" value="high" /> <param name="menu" value="false" /> <embed src="./swf/battleships.swf" width="+'+w+'" height="'+h+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" menu="false"></embed> </object></noscript> ';

    var game = document.getElementById("game");
    if(game) {
	    game.innerHTML = gametext;
    } else {
	    document.body.innerHTML = gametext;
    }

}

