Simple, Plain, Customizable JS Dialogs.
http://mattlockyer.github.io/diajs/
jQuery (loaded from google if undefined)
<script src="dia.js"></script>
DIA.alert('Hip Hop, Horray');
DIA.confirm('Which type of music do you prefer?', function(value) {
console.log(value);
}, {'Hip Hop':'Hooray', 'Metal':'Burn Everything'});
DIA.prompt('How old are you?', function(value) {
console.log(value);
}, 'my age', {'Yes, that is correct':true});