| Line 1... |
Line -... |
| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
- |
|
| 2 |
<html xmlns="http://www.w3.org/1999/xhtml">
|
- |
|
| 3 |
<head>
|
- |
|
| 4 |
<title>$action.getPageTitleSnippet()</title>
|
- |
|
| 5 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
- |
|
| 6 |
<meta name="Description" content="$action.getPageMetaDescSnippet()" />
|
- |
|
| 7 |
<meta property="og:url" content="$action.getProductUrl()" />
|
- |
|
| 8 |
<meta property='og:image' content="$action.getRootUrl()/images/website/$action.getProductId()/icon.jpg" />
|
- |
|
| 9 |
<meta property='og:type' content="product" />
|
- |
|
| 10 |
<meta property='og:title' content="$action.getProductName()" />
|
- |
|
| 11 |
<meta property='og:site_name' content="${in.shop2020.title}" />
|
- |
|
| 12 |
<meta property="og:description" content="$action.getPageMetaDescSnippet()"/>
|
- |
|
| 13 |
<meta property='fb:admins' content="100002073769572" />
|
- |
|
| 14 |
#include ( "templates/commoncssfiles.vm" )
|
- |
|
| 15 |
<link rel="stylesheet" href="/css/entity.css" type="text/css" />
|
- |
|
| 16 |
<script language="javascript" type="text/javascript" src="/js/ga-invoker.js"></script>
|
- |
|
| 17 |
#include ( "templates/commonjsfiles.vm" )
|
- |
|
| 18 |
<script type="text/javascript">
|
- |
|
| 19 |
if(typeof Entity === 'undefined'){
|
- |
|
| 20 |
Entity = {};
|
- |
|
| 21 |
}
|
- |
|
| 22 |
Entity.orderedItems = $action.getEntityLogisticsEstimation();
|
- |
|
| 23 |
</script>
|
- |
|
| 24 |
|
- |
|
| 25 |
#set($userinfo = $action.getUserInfo())
|
- |
|
| 26 |
</head>
|
- |
|
| 27 |
|
- |
|
| 28 |
<body>
|
- |
|
| 29 |
<noscript>
|
- |
|
| 30 |
<p id="noScript">Please enable <em>Javascript</em> for this Website to function correctly!</p>
|
- |
|
| 31 |
</noscript>
|
- |
|
| 32 |
$action.getHeaderSnippet()
|
- |
|
| 33 |
|
- |
|
| 34 |
<!-- Main -->
|
- |
|
| 35 |
<div id="main">
|
- |
|
| 36 |
<div class="main-content">
|
- |
|
| 37 |
<div class="main-top">
|
- |
|
| 38 |
<div class="bread-crumbs">
|
- |
|
| 39 |
$action.getBreadCrumb()
|
- |
|
| 40 |
</div>
|
- |
|
| 41 |
</div>
|
- |
|
| 42 |
<div class="main-left left">
|
- |
|
| 43 |
<!-- Product Detail -->
|
- |
|
| 44 |
$action.getProductSummarySnippet()
|
- |
|
| 45 |
<!-- /Product Detail -->
|
- |
|
| 46 |
|
- |
|
| 47 |
<!-- wrapper-->
|
- |
|
| 48 |
<div id="wrapper">
|
- |
|
| 49 |
<input id="defaultpincode" name="defaultpincode" value=$userinfo.getPincode() type="hidden" />
|
- |
|
| 50 |
|
- |
|
| 51 |
<!-- slide guide -->
|
- |
|
| 52 |
<div id="slideGuide">
|
- |
|
| 53 |
$action.getSlideGuideSnippet()
|
- |
|
| 54 |
</div>
|
- |
|
| 55 |
<!-- /slide guide -->
|
- |
|
| 56 |
</div>
|
- |
|
| 57 |
<!-- /wrapper-->
|
- |
|
| 58 |
</div>
|
- |
|
| 59 |
|
- |
|
| 60 |
#set($ismobile = $action.isMobile())
|
- |
|
| 61 |
#set($discounts = $action.getDiscounts())
|
- |
|
| 62 |
<!-- Widgets -->
|
- |
|
| 63 |
<div class="widgets right">
|
- |
|
| 64 |
|
- |
|
| 65 |
$action.getCartWidgetSnippet()
|
- |
|
| 66 |
<div class="side-banner">
|
- |
|
| 67 |
<script type='text/javascript'><!--//<![CDATA[
|
- |
|
| 68 |
var m3_u = (location.protocol=='https:'?' https://promotions.saholic.com/openx/www/delivery/ajs.php':'http://promotions.saholic.com/openx/www/delivery/ajs.php');
|
- |
|
| 69 |
var m3_r = Math.floor(Math.random()*99999999999);
|
- |
|
| 70 |
if (!document.MAX_used) document.MAX_used = ',';
|
- |
|
| 71 |
document.write ("<scr"+"ipt type='text/javascript' src='"+m3_u);
|
- |
|
| 72 |
document.write ("?zoneid=9");
|
- |
|
| 73 |
document.write ('&cb=' + m3_r);
|
- |
|
| 74 |
|
- |
|
| 75 |
#if($discounts)
|
- |
|
| 76 |
#foreach($couponCode in $discounts.keySet())
|
- |
|
| 77 |
#set($discountValue = $discounts.get($couponCode))
|
- |
|
| 78 |
document.write ('&coupon=$couponCode');
|
- |
|
| 79 |
document.write ('&discount=$discountValue');
|
- |
|
| 80 |
#end
|
- |
|
| 81 |
#end
|
- |
|
| 82 |
|
- |
|
| 83 |
if (document.MAX_used != ',') document.write ("&exclude=" + document.MAX_used);
|
- |
|
| 84 |
document.write (document.charset ? '&charset='+document.charset : (document.characterSet ? '&charset='+document.characterSet : ''));
|
- |
|
| 85 |
document.write ("&loc=" + escape(window.location));
|
- |
|
| 86 |
if (document.referrer) document.write ("&referer=" + escape(document.referrer));
|
- |
|
| 87 |
if (document.context) document.write ("&context=" + escape(document.context));
|
- |
|
| 88 |
if (document.mmm_fo) document.write ("&mmm_fo=1");
|
- |
|
| 89 |
document.write ("'><\/scr"+"ipt>");
|
- |
|
| 90 |
//]]>--></script><noscript><a href=' http://promotions.saholic.com/openx/www/delivery/ck.php?n=a058b848&cb=INSERT_RANDOM_NUMBER_HERE' target='_blank'><img src=' http://promotions.saholic.com/openx/www/delivery/avw.php?zoneid=9&cb=INSERT_RANDOM_NUMBER_HERE&n=a058b848' border='0' alt='' /></a></noscript>
|
- |
|
| 91 |
</div>
|
- |
|
| 92 |
<div class="side-banner">
|
- |
|
| 93 |
<script type='text/javascript'><!--//<![CDATA[
|
- |
|
| 94 |
var m3_u = (location.protocol=='https:'?'https://open.saholic.com/openx/www/delivery/ajs.php':'http://open.saholic.com/openx/www/delivery/ajs.php');
|
- |
|
| 95 |
var m3_r = Math.floor(Math.random()*99999999999);
|
- |
|
| 96 |
if (!document.MAX_used) document.MAX_used = ',';
|
- |
|
| 97 |
document.write ("<scr"+"ipt type='text/javascript' src='"+m3_u);
|
- |
|
| 98 |
document.write ("?zoneid=6");
|
- |
|
| 99 |
document.write ('&cb=' + m3_r);
|
- |
|
| 100 |
#if($discounts)
|
- |
|
| 101 |
#foreach($couponCode in $discounts.keySet())
|
- |
|
| 102 |
#set($discountValue = $discounts.get($couponCode))
|
- |
|
| 103 |
|
- |
|
| 104 |
document.write ('&coupon=$couponCode');
|
- |
|
| 105 |
document.write ('&discount=$discountValue');
|
- |
|
| 106 |
#end
|
- |
|
| 107 |
#end
|
- |
|
| 108 |
|
- |
|
| 109 |
if (document.MAX_used != ',') document.write ("&exclude=" + document.MAX_used);
|
- |
|
| 110 |
document.write (document.charset ? '&charset='+document.charset : (document.characterSet ? '&charset='+document.characterSet : ''));
|
- |
|
| 111 |
document.write ("&loc=" + escape(window.location));
|
- |
|
| 112 |
if (document.referrer) document.write ("&referer=" + escape(document.referrer));
|
- |
|
| 113 |
if (document.context) document.write ("&context=" + escape(document.context));
|
- |
|
| 114 |
if (document.mmm_fo) document.write ("&mmm_fo=1");
|
- |
|
| 115 |
document.write ("'><\/scr"+"ipt>");
|
- |
|
| 116 |
//]]>--></script><noscript><a href='http://open.saholic.com/openx/www/delivery/ck.php?n=ae760280&cb=INSERT_RANDOM_NUMBER_HERE' target='_blank'><img src='http://open.saholic.com/openx/www/delivery/avw.php?zoneid=6&cb=INSERT_RANDOM_NUMBER_HERE&n=ae760280' border='0' alt='' /></a></noscript>
|
- |
|
| 117 |
</div>
|
- |
|
| 118 |
|
- |
|
| 119 |
#if($ismobile)
|
- |
|
| 120 |
<div id="mostcompared" class="common-widget">
|
- |
|
| 121 |
#include ( "templates/mostcompared.vm" )
|
- |
|
| 122 |
</div>
|
- |
|
| 123 |
#end
|
- |
|
| 124 |
<div id="myresearch" class="common-widget">
|
- |
|
| 125 |
#include("templates/myresearch.vm")
|
- |
|
| 126 |
</div>
|
- |
|
| 127 |
#if($ismobile)
|
- |
|
| 128 |
<div id="accessories" class="common-widget">
|
- |
|
| 129 |
#include ( "templates/accessories.vm" )
|
- |
|
| 130 |
</div>
|
- |
|
| 131 |
#end
|
- |
|
| 132 |
|
- |
|
| 133 |
<div id="browsehistory" class="common-widget">
|
- |
|
| 134 |
#include("templates/browsehistory.vm")
|
- |
|
| 135 |
</div>
|
- |
|
| 136 |
</div>
|
- |
|
| 137 |
<!-- /Widgets -->
|
- |
|
| 138 |
|
- |
|
| 139 |
</div>
|
- |
|
| 140 |
</div>
|
- |
|
| 141 |
<!-- /Main -->
|
- |
|
| 142 |
#include("templates/footer.vm")
|
- |
|
| 143 |
#parse ( "templates/retargetingjs.vm" )
|
- |
|
| 144 |
<form name="frmColorSelName">
|
- |
|
| 145 |
<div id="compareLightBox" class="colorSelLightBoxColor" style="display:none;">
|
- |
|
| 146 |
<h1>Compare with</h1>
|
- |
|
| 147 |
<h2>Please search $action.getCompareCategoryLowerCase() to compare</h2>
|
- |
|
| 148 |
|
- |
|
| 149 |
<div class="content">
|
- |
|
| 150 |
<input type="text" id="mobilename" name="mobilename" /><br />
|
- |
|
| 151 |
</div>
|
- |
|
| 152 |
<div class="bigImgButton yellow-image">
|
- |
|
| 153 |
<input value="Compare" type="button" class="button" id="compare_continue" producttype="$action.getCompareCategory()"/>
|
- |
|
| 154 |
</div>
|
- |
|
| 155 |
<div class="clearBoth"></div>
|
- |
|
| 156 |
</form>
|
- |
|
| 157 |
</div>
|
- |
|
| 158 |
<div id="emiLightBox" class="colorSelLightBoxColor" style="display:none;">
|
- |
|
| 159 |
<ol class="bank-name" id="bank-name" name="bankname" style="width:540px">
|
- |
|
| 160 |
</ol>
|
- |
|
| 161 |
<table id="emi_options" style="border-collapse:collapse;width:540px;text-align:center">
|
- |
|
| 162 |
<tbody>
|
- |
|
| 163 |
<tr>
|
- |
|
| 164 |
<td style="background-color:#ededed;" rowspan="2"><b>Bank</b></td>
|
- |
|
| 165 |
<td class="mk_emioptions" style="background-color:#ededed;" colspan="4"><b>Installment</b></td>
|
- |
|
| 166 |
</tr>
|
- |
|
| 167 |
<tr class="mk_tenure"></tr>
|
- |
|
| 168 |
<tr class="emirow"></tr>
|
- |
|
| 169 |
</tbody>
|
- |
|
| 170 |
</table>
|
- |
|
| 171 |
<ul style="margin-top:10px;list-style:disc inside none;width:540px">
|
- |
|
| 172 |
<li>EMI option is applicable only on Credit Cards.</li>
|
- |
|
| 173 |
<li>Installment is inclusive of applicable processing fee and taxes.</li>
|
- |
|
| 174 |
<li>Please choose EMI tab on payment page to avail EMI option</li>
|
- |
|
| 175 |
</ul>
|
- |
|
| 176 |
</div>
|
- |
|
| 177 |
|
- |
|
| 178 |
</div>
|
- |
|
| 179 |
</div>
|
- |
|
| 180 |
<script type="text/javascript" src="/js/saholicmobilephones.js"></script>
|
- |
|
| 181 |
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
|
- |
|
| 182 |
<script language="javascript" type="text/javascript" src="/js/jquery.qtip-1.0.0-rc3.min.js"></script>
|
- |
|
| 183 |
<script type="text/javascript" src="/js/entity.js"></script>
|
- |
|
| 184 |
<script type="text/javascript" charset="utf-8">
|
- |
|
| 185 |
$(function(){
|
- |
|
| 186 |
/* This code is for compare with button */
|
- |
|
| 187 |
var availableNames = [];
|
- |
|
| 188 |
for (var k in productIdNames['$action.getCompareCategory()'])availableNames.push(k);
|
- |
|
| 189 |
$("#mobilename").autocomplete({ autoFocus: true, minLength: 3,
|
- |
|
| 190 |
source: availableNames
|
- |
|
| 191 |
});
|
- |
|
| 192 |
});
|
- |
|
| 193 |
emiObj = $action.getEmiObject();
|
- |
|
| 194 |
/*youtube video init*/
|
- |
|
| 195 |
google.load("swfobject", "2.1");
|
- |
|
| 196 |
</script>
|
- |
|
| 197 |
</body>
|
- |
|
| 198 |
</html>
|
- |
|
| 199 |
|
1 |
{"entity":$action.getEntityPojo()}
|
| - |
|
2 |
|
| 200 |
|
3 |
|