  <!--

  //
  // Resize object/div/window
  //
  
  function MyAlert() {
     alert('In ai_interferentie.js'); 
  }
  function ResizeWindow(NameOfWindow, WidthOfWindow,HeightOfWindow) {
    NameOfWindow.height = HeightOfWindow;
    NameOfWindow.width  = WidthOfWindow;
  }

  //
  // Changes the cursor to hand
  //
  function CursorPointer() {
    document.body.style.cursor = 'pointer';
  }

  function CursorPointerImage(image) {
 image.style.cursor = 'pointer';
  }


  //
  //
  //
  function CursorDefault() {
    document.body.style.cursor = 'default';
  }

  //
  //
  //
  function showstuff(boxid){
    document.getElementById(boxid).style.display="block";
 }

  //
  //
  //
 function hidestuff(boxid) {
   document.getElementById(boxid).style.display="none";

 }

function EnlargeImage(ID,Magnification){
   var x=document.getElementById(ID);
   x.height=Magnification*x.height;
   x.width=Magnification*x.width;
}

 //
 //
 // 
 // -->
