// ############################## START FUNC ############################################ // A call to the function load_frames makes the frames in subframe "right" to load. In order // not to get a frame outbreak (some browsers) in case of error 404 for a file, pure html // source code is written directly in subframe "right", instead of setting document.location // for the specific end frame. function load_frames(a_loc,b_loc,c_loc) { var html_doc="\n
\n\n\n"; // Frame="hidden" is a help frame to allow verification of frame content. Some browsers get // an error and end the script execution when innerHTML or location is researched for frames // where the document was not found (error 404). This is probably due to the same security // measurement which prevent access of the content in a frame which is loaded from a different // server then the document for the script. Further information can be retrieved as comments // for the function verify_frame_content(). parent.right.document.write(html_doc); parent.right.location.reload(); parent.right.hidden.location.reload(); parent.right.ute1.location.reload(); parent.right.ute2.location.reload(); parent.right.ute3.location.reload(); // The frames must be reloaded to be reachable by innerHTML (some browsers). return; } // ############################### end func ############################################