// ©2007 INVENS B.V. - HTTP://WWW.INVENS.NL
// NIETS VAN DEZE PAGINA OF DEZE WEBSITE MAG WORDEN OVERGENOMEN, HERGEBRUIKT OF WORDEN GEKOPIERD 
// IN WELKE VORM DAN OOK ZONDER SCHRIFTELIJKE TOESTEMMING VAN I-SOLVE BV EN/OF INVENS BV.        
// V1.0 04/2007 - SVEN MULLER                      

// ©2005 INVENS B.V WEBDEVELOPMENT 
function IWS_rollOver(tr,css){//v1.5
  if (document.getElementById||(document.all && !(document.getElementById)))
    { tr.className= css;
      tr.style.cursor = "hand";
    }
}

// ©2005 INVENS B.V WEBDEVELOPMENT 
function IWS_rollOut(tr,css){//v1.5
  if (document.getElementById||(document.all && !(document.getElementById)))
    { tr.className = css;
      tr.style.cursor = "default";
    }
}

// ©2005 FTN CREW 
var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){ //v1.0 FTN CREW, FTN2DAY
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);}

// ©2005 FTN CREW 
function IW_uri(uri){ //v1.0 FTN CREW, FTN2DAY
 top.opener.window.location.href = uri;
 window.close();
}