function testFrameset() {
    var address = "index.htm?blubb";
    if(top.frames.length == 0) {
        if(document.images) {
            top.location.replace(address);
        }
        else {
            top.location.href=address;
        }
    }
}
