<!--
function pageInsert() {
  var nvstring = window.location.search.substring(1); //Discard '?'
  var ref = "bioptichome.html";
  var pos = nvstring.indexOf('=');
  if (pos != -1) {
    var cmd = nvstring.substring(0,pos);
    if (cmd == "load") {
      ref =  nvstring.substring(pos+1);
    };
  };
  if (window.content.location.pathname != '/'+ref) {
    window.content.location.href = ref;
  };
};
// -->

