function ___GetMyElement(Id) { if (document.all != null) { return document.all(Id); } if (document.getElementById != null) { return document.getElementById(Id); } } function CheckForFrameset() { var d, p, f; d = document; if (d!=null) { f = ___GetMyElement('FramesetMessage'); if (parent.frames != null) if (parent.frames.length == 0) if (f != null) f.style.display = ''; } } function CheckForFramesetAndRedirect(dest) { if (parent.frames != null) if (parent.frames.length == 0) window.location.replace(dest); }