<html>
<head>
<script>
function fireSentinel()
{
parent.postMessage("LOADED", "*");
}
</script>
</head>
<body onload="fireSentinel();">
<p id='accessMe'></p>
<p>Inner iframe.</p>
</body>
</html>
<html>
<head>
<script>
function fireSentinel()
{
parent.postMessage("LOADED", "*");
}
</script>
</head>
<body onload="fireSentinel();">
<p id='accessMe'></p>
<p>Inner iframe.</p>
</body>
</html>