<?php/** * Magento * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE_AFL.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@magento.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade Magento to newer * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magento.com for more information. * * @category    design * @package     base_default * @copyright   Copyright (c) 2010 Magento Inc. (http://www.magento.com) * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0) */?><?php $_product = $this->getProduct(); ?><?php $_wishlistSubmitUrl = $this->helper('wishlist')->getAddUrlWithParams($_product,array(Mage_Core_Controller_Front_Action::PARAM_NAME_URL_ENCODED => Mage::helper('core')->urlEncode($_SERVER["HTTP_REFERER"]))); ?><ul class="add-to-links"><?php    $_compareUrl = $this->helper('quickshop/compare')->getAddUrl($_product);?><?php if($_compareUrl) : ?>    <li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><span><span><?php echo $this->__('Compare') ?></span></span></a></li><?php endif; ?><?php if ($this->helper('wishlist')->isAllow()) : ?>    <li><a href="<?php echo $_wishlistSubmitUrl ?>" onclick="productAddToCartForm.submitLight(this, '<?php echo $_wishlistSubmitUrl ?>'); return false;" class="link-wishlist"><span><span><?php echo $this->__('Wishlist') ?></span></span></a></li><?php endif; ?></ul>