<langage de script=Javascript>
var proMaxHauteur = 150 ;
var proMaxWidth = 110 ;
fonction proDownImage(ImgD){
var image=nouvelle image();
image.src=ImgD.src;
si (image.width>0 && image.height>0){
var rate = (proMaxWidth/image.width < proMaxHeight/image.height)?proMaxWidth/image.width:proMaxHeight/image.height;
si(taux <= 1){
ImgD.width = image.width*taux ;
ImgD.hauteur =image.hauteur*taux ;
}
autre {
ImgD.width = image.width;
ImgD.hauteur =image.hauteur;
}
}
}
</script>