
if(top != self){
top.location.href = location.href;
}

function submit_this() {
     if (document.getElementById) { // DOM3 = IE5, NS6
          document.getElementById('StatusFrame').style.display = 'block';
          document.getElementById('hide_stuff').style.display = 'block';          
          document.getElementById('show_stuff').style.display = 'none';
     } else {
          if (document.layers) { // Netscape 4
          		document.StatusFrame.display = 'block';
               document.hide_stuff.display = 'block';
               document.show_stuff.display = 'none';
          } else { // IE 4
               document.all.StatusFrame.style.display = 'block';
               document.all.hide_stuff.style.display = 'block';
               document.all.show_stuff.style.display = 'none';
          }
     } 
}


