public function render(Varien_Object $row)
    {
        if ($row->getAccountId()) {
            return sprintf('
				<a href="%s" title="%s">%s</a>', $this->getUrl('affiliateplusadmin/adminhtml_account/edit/', array('_current' => true, 'id' => $row->getAccountId())), Mage::helper('affiliateplus')->__('View Affiliate Account Details'), $row->getAccountEmail());
        }
        return $row->getAccountEmail();
    }
 public function render(Varien_Object $row)
 {
     return sprintf('<a href="%s" title="%s">%s</a>', $this->getUrl('affiliateplusadmin/adminhtml_account/edit', array('_current' => true, 'id' => $row->getAccountId(), 'store' => $this->getRequest()->getParam('store'))), Mage::helper('affiliateplusprogram')->__('View Affiliate Account Details'), $row->getAccountName());
 }
 public function render(Varien_Object $row)
 {
     return sprintf('
 <a href="%s" title="%s">%s</a>', $this->getUrl('affiliateplus/adminhtml_account/edit/', array('_current' => true, 'id' => $row->getAccountId())), Mage::helper('affiliatepluspayperlead')->__('View Account Detail'), Mage::helper('core/string')->truncate($row->getAccountName(), 30));
 }