| Line -... |
Line 1... |
| - |
|
1 |
#set($banners = $action.getActiveBanners("/recharge-result"))
|
| - |
|
2 |
#if($banners)
|
| - |
|
3 |
#set($bannerCount = $banners.size())
|
| - |
|
4 |
#else
|
| - |
|
5 |
#set($bannerCount = 0)
|
| - |
|
6 |
#end
|
| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
7 |
<!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">
|
8 |
<html xmlns="http://www.w3.org/1999/xhtml">
|
| 3 |
<head>
|
9 |
<head>
|
| 4 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
| 5 |
|
11 |
|
| Line 9... |
Line 15... |
| 9 |
<meta name="msvalidate.01" content="A9BB200170442859BD6DF681353ACD78" />
|
15 |
<meta name="msvalidate.01" content="A9BB200170442859BD6DF681353ACD78" />
|
| 10 |
<title>Recharge payment details</title>
|
16 |
<title>Recharge payment details</title>
|
| 11 |
|
17 |
|
| 12 |
#include ( "templates/commoncssfiles.vm" )
|
18 |
#include ( "templates/commoncssfiles.vm" )
|
| 13 |
#include ( "templates/commonjsfiles.vm" )
|
19 |
#include ( "templates/commonjsfiles.vm" )
|
| - |
|
20 |
<script type="text/javascript" charset="utf-8">
|
| - |
|
21 |
#if ($bannerCount == 1 )
|
| - |
|
22 |
jQuery('#banner-menu').slidy({
|
| - |
|
23 |
animation: 'none',
|
| - |
|
24 |
children: 'a',
|
| - |
|
25 |
menu: false,
|
| - |
|
26 |
pause: true,
|
| - |
|
27 |
speed: 400,
|
| - |
|
28 |
time: 4000
|
| - |
|
29 |
});
|
| - |
|
30 |
|
| - |
|
31 |
#elseif ($bannerCount > 1 && $bannerCount < 3 )
|
| - |
|
32 |
$(document).ready(function() {
|
| - |
|
33 |
$('#bannerMenu').DDSlider({
|
| - |
|
34 |
nextSlide: '.slider_arrow_right',
|
| - |
|
35 |
prevSlide: '.slider_arrow_left',
|
| - |
|
36 |
selector: '.slider_selector'
|
| - |
|
37 |
});
|
| - |
|
38 |
});
|
| - |
|
39 |
#else
|
| - |
|
40 |
jQuery('#banner-menu').slidy({
|
| - |
|
41 |
animation: 'fade',
|
| - |
|
42 |
children: 'a',
|
| - |
|
43 |
menu: true,
|
| - |
|
44 |
pause: true,
|
| - |
|
45 |
speed: 200,
|
| - |
|
46 |
time: 5000
|
| - |
|
47 |
});
|
| - |
|
48 |
#end
|
| - |
|
49 |
jQuery("#banner-menu").find("a, area").click(
|
| - |
|
50 |
function(){
|
| - |
|
51 |
if($(this).attr("href") != "#") {
|
| - |
|
52 |
bannername = $(this).attr("banner-name");
|
| - |
|
53 |
url = $(this).attr("href");
|
| - |
|
54 |
trackEventWithGA('Banner Region Clicked', bannername, url);
|
| - |
|
55 |
}
|
| - |
|
56 |
}
|
| - |
|
57 |
);
|
| - |
|
58 |
</script>
|
| - |
|
59 |
<style type="text/css">
|
| - |
|
60 |
.slider_arrow_left {
|
| - |
|
61 |
background: url(/images/left_arrow.png) no-repeat top left;
|
| - |
|
62 |
}
|
| - |
|
63 |
.slider_arrow_right {
|
| - |
|
64 |
background: url(/images/right_arrow.png) no-repeat top left;
|
| - |
|
65 |
}
|
| - |
|
66 |
</style>
|
| 14 |
#set($rechargeOrder = $action.getRechargeOrder())
|
67 |
#set($rechargeOrder = $action.getRechargeOrder())
|
| 15 |
#set($status = $action.getOrderStatus())
|
68 |
#set($status = $action.getOrderStatus())
|
| 16 |
<link rel="stylesheet" href="/css/home.css" type="text/css" />
|
69 |
<link rel="stylesheet" href="/css/home.css" type="text/css" />
|
| 17 |
<style type="text/css">
|
70 |
<style type="text/css">
|
| 18 |
#myAccount .status h1 {
|
71 |
#myAccount .status h1 {
|
| Line 62... |
Line 115... |
| 62 |
<!-- Main -->
|
115 |
<!-- Main -->
|
| 63 |
<div id="main">
|
116 |
<div id="main">
|
| 64 |
<div class="main-content">
|
117 |
<div class="main-content">
|
| 65 |
<div class="main-top"></div>
|
118 |
<div class="main-top"></div>
|
| 66 |
<div class="main-left left">
|
119 |
<div class="main-left left">
|
| - |
|
120 |
#if ( $bannerCount == 0 )
|
| 67 |
<div class="main-left-banner">
|
121 |
<div class="main-left-banner" style="display: none">
|
| - |
|
122 |
#elseif ( $bannerCount < 3 )
|
| - |
|
123 |
<div class="main-left-banner" style="height: 210px;">
|
| - |
|
124 |
#else
|
| 68 |
<script type='text/javascript'><!--//<![CDATA[
|
125 |
<div class="main-left-banner" style="height: 230px;">
|
| - |
|
126 |
#end
|
| - |
|
127 |
|
| - |
|
128 |
#if($bannerCount > 1 && $bannerCount < 3)
|
| - |
|
129 |
<ul id="bannerMenu">
|
| - |
|
130 |
#foreach($banner in $banners)
|
| - |
|
131 |
#if($banner.isHasMap())
|
| 69 |
var m3_u = (location.protocol=='https:'?'https://open.saholic.com/openx/www/delivery/ajs.php':'http://open.saholic.com/openx/www/delivery/ajs.php');
|
132 |
<li class="square"><a href="$banner.getLink()" banner-name='$banner.getBannerName()'><img src='/images/banners/$banner.getImageName()' usemap='#map$velocityCount' height="200" width="710"/></a>
|
| - |
|
133 |
<map name='map$velocityCount'>
|
| 70 |
var m3_r = Math.floor(Math.random()*99999999999);
|
134 |
#set($mapdetails = $action.getbannermapdetails("$banner.getBannerName()"))
|
| 71 |
if (!document.MAX_used) document.MAX_used = ',';
|
135 |
#foreach($mapdetail in $mapdetails)
|
| 72 |
document.write ("<scr"+"ipt type='text/javascript' src='"+m3_u);
|
136 |
<area shape="rect" coords='$mapdetail.getCoordinates()' href='$mapdetail.getMapLink()' banner-name='$banner.getBannerName()'/>
|
| - |
|
137 |
#end
|
| - |
|
138 |
</map>
|
| - |
|
139 |
</li>
|
| - |
|
140 |
#else
|
| - |
|
141 |
<li class="square"><a href="$banner.getLink()" banner-name='$banner.getBannerName()'><img src='/images/banners/$banner.getImageName()' height="200" width="710" /></a></li>
|
| 73 |
document.write ("?zoneid=1");
|
142 |
#end
|
| - |
|
143 |
#end
|
| - |
|
144 |
</ul>
|
| - |
|
145 |
<div class="container">
|
| 74 |
document.write ('&cb=' + m3_r);
|
146 |
<div class="slider_arrow_left"></div>
|
| 75 |
if (document.MAX_used != ',') document.write ("&exclude=" + document.MAX_used);
|
147 |
<div class="slider_arrow_right"></div>
|
| - |
|
148 |
</div>
|
| - |
|
149 |
#else
|
| - |
|
150 |
<div id="banner-menu">
|
| - |
|
151 |
#foreach($banner in $banners)
|
| - |
|
152 |
#if($banner.isHasMap())
|
| 76 |
document.write (document.charset ? '&charset='+document.charset : (document.characterSet ? '&charset='+document.characterSet : ''));
|
153 |
<a href="$banner.getLink()" banner-name='$banner.getBannerName()'><img src='/images/banners/$banner.getImageName()' title="$banner.getBannerName()" usemap='#map$velocityCount'/></a>
|
| - |
|
154 |
<map name='map$velocityCount'>
|
| 77 |
document.write ("&loc=" + escape(window.location));
|
155 |
#set($mapdetails = $action.getbannermapdetails("$banner.getBannerName()"))
|
| - |
|
156 |
#foreach($mapdetail in $mapdetails)
|
| 78 |
if (document.referrer) document.write ("&referer=" + escape(document.referrer));
|
157 |
<area shape="rect" coords='$mapdetail.getCoordinates()' href='$mapdetail.getMapLink()' banner-name='$banner.getBannerName()'/>
|
| - |
|
158 |
#end
|
| - |
|
159 |
</map>
|
| - |
|
160 |
#else
|
| 79 |
if (document.context) document.write ("&context=" + escape(document.context));
|
161 |
<a href="$banner.getLink()" banner-name='$banner.getBannerName()'><img src='/images/banners/$banner.getImageName()' title="$banner.getBannerName()"/></a>
|
| 80 |
if (document.mmm_fo) document.write ("&mmm_fo=1");
|
162 |
#end
|
| - |
|
163 |
#end
|
| 81 |
document.write ("'><\/scr"+"ipt>");
|
164 |
</div>
|
| 82 |
//]]>--></script><noscript><a href='http://open.saholic.com/openx/www/delivery/ck.php?n=a592d2cd&cb=INSERT_RANDOM_NUMBER_HERE' target='_blank'><img src='http://open.saholic.com/openx/www/delivery/avw.php?zoneid=1&cb=INSERT_RANDOM_NUMBER_HERE&n=a592d2cd' border='0' alt='' /></a></noscript>
|
165 |
#end
|
| 83 |
</div>
|
166 |
</div>
|
| 84 |
<div style='height: 30px;background-color: #2789C1;font-size: 14px;font-weight: bold;color: #FFFFFF;border: solid 1px #2789C1;width: 100%;'>
|
167 |
<div style='height: 30px;background-color: #2789C1;font-size: 14px;font-weight: bold;color: #FFFFFF;border: solid 1px #2789C1;width: 100%;'>
|
| 85 |
<div style='margin:0 10px 0 10px;padding-top:7px'>
|
168 |
<div style='margin:0 10px 0 10px;padding-top:7px'>
|
| 86 |
RECHARGE DETAILS
|
169 |
RECHARGE DETAILS
|
| 87 |
</div>
|
170 |
</div>
|
| Line 119... |
Line 202... |
| 119 |
</div>
|
202 |
</div>
|
| 120 |
</div>
|
203 |
</div>
|
| 121 |
#end
|
204 |
#end
|
| 122 |
</div>
|
205 |
</div>
|
| 123 |
</div>
|
206 |
</div>
|
| 124 |
<div class="widgets right">
|
207 |
<div class="widgets right">
|
| 125 |
<div id="banner-side">
|
208 |
$action.getCartWidgetSnippet()
|
| 126 |
<img src="/images/banner-side.jpg" usemap="#popup">
|
- |
|
| 127 |
<map name="popup">
|
- |
|
| 128 |
<area shape="rect" coords="0,90,255,146" id="otg_know_more" href="javascript:void(0)">
|
- |
|
| 129 |
<area shape="rect" coords="0,144,255,215" id="pickupstoreInfo" href="javascript:void(0)">
|
- |
|
| 130 |
<area shape="rect" coords="0,213,255,284" class="emiInfo" href="javascript:void(0)">
|
- |
|
| 131 |
<area shape="rect" coords="0,280,255,346" class="insuranceInfo" href="javascript:void(0)">
|
- |
|
| 132 |
</map>
|
- |
|
| 133 |
</div>
|
- |
|
| 134 |
<div style="margin-top:10px;cursor: pointer;" id="promotion">
|
- |
|
| 135 |
<a href="/mobile-phones/spice-coolpad-2-mi-496-1006864">
|
- |
|
| 136 |
<img src="/images/Side-Add-blue.jpg">
|
- |
|
| 137 |
</a>
|
- |
|
| 138 |
</div>
|
209 |
</div>
|
| 139 |
</div>
|
- |
|
| 140 |
</div>
|
210 |
</div>
|
| 141 |
</div>
|
211 |
</div>
|
| 142 |
#include("templates/footer.vm")
|
212 |
#include("templates/footer.vm")
|
| 143 |
|
213 |
|
| 144 |
<script type="text/javascript" charset="utf-8">
|
214 |
<script type="text/javascript" charset="utf-8">
|