window.addEventListener("load", function() {
    var obj = document.createElementNS("http://www.w3.org/1999/xhtml", "obj");
    obj.setAttributeNS("", "codetype", "application/java");
    obj.setAttributeNS("", "width", "200");
    obj.setAttributeNS("", "height", "30");
    obj.setAttributeNS("", "codebase", "http://shadow2531.com/opera/testcases/plugins/java/");
    obj.setAttributeNS("", "classid", "java:JavaAppletTest");
    var message = document.createElementNS("http://www.w3.org/1999/xhtml", "param");
    message.setAttributeNS("", "name", "message");
    message.setAttributeNS("", "value", "Java Applet Loaded Successfully");
    obj.appendChild( message );
    obj.appendChild( document.createTextNode("error: JavaAppletTest failed to load") );
    document.getElementById("java_container").appendChild( obj );
}, false);