Open a Hyperlink in a New Window

Open a Hyperlink in a New Window

On my site it lets you use widgets and this one widget has links but the links don't open the site in a new window. It just remains in the same window. How can I change this coding to allow the link to open in a new window;

Coding of Widget


<b:widget id='LinkList3' locked='false' title='MAGAZINE OUTLETS I CURRENTLY WRITE FOR' type='LinkList'>
<b:includable id='main'>

<b:if cond='data:title'><h2><data:title/></h2></b:if>
 <div class='widget-content'>
   <ul>
     <b:loop values='data:links' var='link'>
       <li><a expr:href='data:link.target'><data:link.name/></a></li>
     </b:loop>
   </ul>
   <b:include name='quickedit'/>
 </div>
</b:includable>
</b:widget>