[jscript] how to identify a page being loaded is inside an iframe or not
function inIframe () { try { return window.self !== window.top; } catch () { return true; } }