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_win   = ( (agt.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1) );
    var is_linux = (agt.indexOf("inux")!=-1);
    if ((! is_win) && (! is_linux))
    {
        alert('GroupWorld.net currently only runs on Windows and Linux');
    }
    else
    {
        if (is_ie)
        {
            document.writeln('<OBJECT ID="GroupWorld" WIDTH=',width,' HEIGHT=',height,' CODEBASE="http://www.groupworld.net/groupworld_hebrew_no3d.cab#Version=1,0,0,60" CLASSID="CLSID:AF14429C-D85A-40F3-AE1C-ADC75429A472"></OBJECT>');
        }
        else if (is_nav)
        {
            document.writeln('<embed name="GroupWorld" type="application/groupworld-plugin" width=',width,' height=',height,' pluginspage=http://www.groupworld.net/plugin_hebrew_no3d.html>');
        }
        else
        {
            alert('Your browser is not supported: please use Internet Explorer, Mozilla, Netscape or Firefox');
        }
    }
}
