

/* A C H T U N G   Schreibweisen   N I C H T    ändern  ! ! !  */

/********************************************************************/

function loadingtext() {
if (document.getElementById) {  // DOM3 = IE5, NS6
document.getElementById('hidepage').style.visibility = 'hidden';
}
else {
if (document.layers) {  // Netscape 4
document.hidepage.visibility = 'hidden';
}
else {  // IE 4
document.all.hidepage.style.visibility = 'hidden';
      }
   }
}

/* Aufruf mit  <body onLoad="toframe()"> */

function ontop() {
  self.focus();
  window.setTimeout("ontop()",500);  /*alle 500 msec ontop*/
}

/*Aufruf mit  <body onLoad="ontop()"> */

/*Mehrere mit  <body onLoad="toframe(),ontop()"> */

function enter() {
if (document.formular.write.value.length == 4) {document.formular.taste.focus()
  }
}

function input() {
var word = document.formular.write.value;



if (word=="++++"){window.location.href="http://www.ionagroep.nl/iona+";}
else if (word=="===="){window.location.href="http://www.ionagroep.nl/iona=";}
else if (word=="----"){window.location.href="http://www.ionagroep.nl/iona-";}
else{window.location.href="contact.htm";
  }
}

function nospam (a1,a2,a3,display) {
   var URL= 'mailto:' + a1 + '@' + a2 + '.' + a3;
   if (!display) window.location.href = URL;
   else return URL;
}


