Tool for Alan
Here you go!
HTML
<textarea id="thearea"></textarea><br /><button onclick="convert()">Convert</button>
CSS
textarea {
width: 100%;
height: 300px;
}
JavaScript
function convert( ) {
var thearea = document.getElementById('thearea');
var textArray = thearea.value.split("\n");
var newText = '';
for(a=0;a<textArray.length; a+=1) {
newText = newText + '"' + textArray[a] + '",' + "\n";
}
thearea.value = newText;
}