var mess = new Array("'In just a few minutes I created a professional installer for my game!'","'Worth the money, it does it's job...'","'Tried other installers but this is the one!'",
"'Quick response on questions!'", "'Gives the finishing touch to my applications!'", "'With the plugin system I can extend it with own functionality. Very cool...'" );
var max = mess.length;
var num = Math.floor((Math.random() * max));
document.writeln(mess[num]);
                    