function groupworld_object(width, height)
{
    var agt=navigator.userAgent.toLowerCase();
    var is_nav  = (agt.indexOf('mozilla') != -1);
    var is_ie = (agt.indexOf("msie") != -1);
    var is_opera = (agt.indexOf("opera") != -1);
    var is_win   = ( (agt.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1) );
    var is_linux = (agt.indexOf("inux")!=-1);
    var is_macosx = (agt.indexOf("mac os x")!=-1);
    var is_safari = (agt.indexOf("safari")!=-1);
    if ((! is_win) && (! is_linux) && (! is_macosx))
    {
        alert('GroupWorld.net currently only runs on Windows, Linux and Mac OS X');
    }
    else
    {
        if (is_macosx)
        {
            if (! is_safari)
            {
                alert('You must use Safari in order to use GroupWorld.net');
            }
            else
            {
                document.writeln('<embed name="GroupWorld" type="application/groupworld-plugin" width=',width,' height=',height,' pluginspage=http://www.groupworld.net/groupworld_plugin.dmg>');
            }
        }
        else if (is_ie)
        {
            document.writeln('<OBJECT ID="GroupWorld" WIDTH=',width,' HEIGHT=',height,' CODEBASE="http://www.groupworld.net/groupworld.cab#Version=1,0,0,62" CLASSID="CLSID:AF14429C-D85A-40F3-AE1C-ADC75429A472"></OBJECT>');
        }
        else if (is_nav || is_opera)
        {
            document.writeln('<embed name="GroupWorld" type="application/groupworld-plugin" width=',width,' height=',height,' pluginspage=http://www.groupworld.net/plugin.html>');
        }
        else
        {
            alert('Your browser is not supported: please use Internet Explorer, Mozilla, Netscape, Firefox or Safari');
        }
    }
}
