Add on to your value property for each checkbox.
Try adding the email as the first property and leave the link as the second and split them by a certain string such as ^^
As an example the first checkbox might become
Code:
<input type="checkbox" name="condo[]" value="[email protected]^^<a href=http://www.berkmanplaza.com>Berkman Plaza 2</a>" />Berkman Plaza 2<br /><br />
To get the values you would explode the value of the checkbox inside your loop
Code:
$values = explode("^^",checkbox[$loopCounterVariable]);
$emailto = $values[0];
$url = $values[1];
http://mynameissteve.com