

    function iframe__get_document_object(iframeobj){
        if (iframeobj.contentDocument) {
            // For NS6
            return iframeobj.contentDocument; 
        } else if (iframeobj.contentWindow) {
            // For IE5.5 and IE6
            return iframeobj.contentWindow.document;
        } else if (iframeobj.document) {
            // For IE5
            return iframeobj.document;
        } else {
            return null;
        }
    
    }
