function illu(titel, width, height){

var x = (screen.availWidth - width)/2;
var y = (screen.availHeight - height)/2;

config='toolbar=no,location=no,directories=no,status=no,menubar=no,left=' + x + ',top=' + y + ',width=' + width + ',height=' + height + ',scrollbars=no,resizable=no';
pop = window.open("","pop2",config);

var illu2 = '<HTML><HEAD><title>BMI - Baak Metaal Industrie</title>'
+ '<style>body{background-repeat: no-repeat; background-position: center; background-color: #FFFFFF;}</style></HEAD><BODY background="beelden/' + titel + '.jpg" bgcolor=#00254E onBlur="self.close();" onload="self.focus();"><CENTER>'
+ '</BODY></HTML>'
pop.document.write(illu2)
pop.document.close()
}
