That line has a single quotes used inside single quotes. You either need to change the outside quotes to double quotes or escape the inside single quotes by preceding each one with a back-slash.
$output .= "<a href='http://www.setoncenterinc.org'></a>"."\n";
or
$output .= '<a href=\'http://www.setoncenterinc.org\'></a>'."\n";