<#macro party p>
<#if p?has_content>
<text:p text:style-name="party">${p.Name}</text:p>
<#if p.Address_1?exists>
<text:p text:style-name="party">${p.Address_1}</text:p>
</#if>
<#if p.Address_2?exists>
<text:p text:style-name="party">${p.Address_2}</text:p>
</#if>
<#if p.Address_3?exists>
<text:p text:style-name="party">${p.Address_3}</text:p>
</#if>
<#if p.City?has_content || p.Country?has_content>
<text:p text:style-name="party">
<#if p.City?has_content>
${p.City}, ${p.State?if_exists} ${p.Zip?if_exists}, 
</#if>
${p.Country?if_exists}
</text:p>
</#if>
<#if p.Contact_Name?has_content>
<text:p text:style-name="party">Contact: ${p.Contact_Name}</text:p>
</#if>
<#if p.Phone?has_content||p.Fax?has_content>
<text:p text:style-name="party">Tel: ${p.Phone} Fax: ${p.Fax}</text:p>
</#if>
</#if>
</#macro>