Code: Select all
<!DOCTYPE html>
<html>
<head><title></title>
<script type="text/javascript">
var url = "/wa/page?oid=1008684";
var delay = 9.0;
function go() {
if ( isEditing() ) {
console.debug("skipping redirect to: " + url + " (editing)" );
return;
}
try {
window.parent.site9.open( url );
}
catch ( e ) {
window.parent.location = url;
}
}
function isEditing() {
try {
if ( window.parent.frameElement.s9_workspace ) {
return true;
}
}
catch ( e ) {
}
return false;
}
</script>
</head>
<body onload="setTimeout( go, delay * 1000 );" style="background:transparent">
</body>
</html>