What is wrong with this AC? Please help me

onRelease = function (){
var format = new TextField.StyleSheet();
var path = “css1.css”;
var quick = “<br><p class=‘one’>The quick Kirupa jumps over the lazy dog.</p><br><p class=‘two’>The quick Kirupa jumps over the lazy dog.</p><br><p class=‘three’>The quick Kirupa jumps over the lazy dog.</p><br><p class=‘four’>The quick Kirupa jumps over the lazy dog.</p>”;
format.load(path);
format.onLoad = function(loaded) {
if (loaded) {
output.styleSheet = format;
output.text = quick;
} else {
output.text = “Error loading CSS file!”;
}
};
};