bankcrawlers-hapoalim 0.0.5 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/{bank-crawlers-hapoalim.gemspec → bankcrawlers-hapoalim.gemspec} +9 -8
- data/lib/bank_crawlers/hapoalim.rb +6 -3
- data/lib/bank_crawlers/hapoalim/cache.rb +4 -4
- data/lib/bank_crawlers/hapoalim/crawler.rb +7 -11
- data/lib/bank_crawlers/hapoalim/hpricot_patches.rb +6 -0
- data/lib/bank_crawlers/hapoalim/parser.rb +8 -10
- data/lib/bank_crawlers/hapoalim/{monkey_patches.rb → string_patches.rb} +0 -7
- data/spec/cache_spec.rb +23 -0
- data/spec/crawler_spec.rb +31 -0
- data/spec/fixtures/transactions.html +1502 -0
- data/spec/hpricot_patches_spec.rb +15 -0
- data/spec/parser_spec.rb +23 -0
- data/spec/runner_spec.rb +35 -0
- data/spec/spec_helper.rb +6 -0
- data/spec/string_patches_spec.rb +9 -0
- metadata +61 -30
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d7e559fb4c9de6ac4e1215757c88d2888f83c83b
|
4
|
+
data.tar.gz: 01439ab21c8e09cc07afa9926cad0d5a505e4f14
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1aef27418068ff59c8ba9b7034939bb1b870b24bfc446d28d1166003581cbfc3a3116f46caa51d307e4bf20d02ff4916407bb553943e819001b33edc25560e2f
|
7
|
+
data.tar.gz: 1dda2df8e1f07f996ee656a084dc9421bed8b6c408c41e4f22bd546750a90845e72c0df54346073000dfad7b9be55c36aac8691d63a862f957d1161a65398de3
|
@@ -4,12 +4,12 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "bankcrawlers-hapoalim"
|
7
|
-
spec.version = '0.0.
|
7
|
+
spec.version = '0.0.8'
|
8
8
|
spec.authors = ["Maiz Lulkin"]
|
9
9
|
spec.email = ["maiz@lulk.in"]
|
10
10
|
spec.description = %q{A crappy crawler for a crappy bank interface}
|
11
|
-
spec.summary = %q{A crappy crawler for a crappy bank interface}
|
12
|
-
spec.homepage = ""
|
11
|
+
spec.summary = %q{A crappy crawler for a crappy bank interface. Deal with it.}
|
12
|
+
spec.homepage = "https://github.com/joaomilho/bank-crawlers-hapoalim"
|
13
13
|
spec.license = "MIT"
|
14
14
|
|
15
15
|
spec.files = `git ls-files`.split($/)
|
@@ -19,11 +19,12 @@ Gem::Specification.new do |spec|
|
|
19
19
|
|
20
20
|
spec.add_development_dependency "bundler", "~> 1.3"
|
21
21
|
|
22
|
-
spec.add_development_dependency "rake"
|
22
|
+
spec.add_development_dependency "rake", '~> 0'
|
23
23
|
spec.add_development_dependency "rspec", "~>2.14"
|
24
|
-
spec.add_development_dependency "
|
24
|
+
spec.add_development_dependency "timecop", '~> 0'
|
25
|
+
spec.add_development_dependency "pry", '~> 0'
|
25
26
|
|
26
|
-
spec.add_dependency "capybara"
|
27
|
-
spec.add_dependency "poltergeist"
|
28
|
-
spec.add_dependency "hpricot"
|
27
|
+
spec.add_dependency "capybara", '~> 2.4.4'
|
28
|
+
spec.add_dependency "poltergeist", '~> 1.6'
|
29
|
+
spec.add_dependency "hpricot", '~> 0'
|
29
30
|
end
|
@@ -1,12 +1,15 @@
|
|
1
|
+
require 'hpricot'
|
2
|
+
|
1
3
|
module BankCrawlers
|
2
4
|
module Hapoalim
|
3
|
-
def self.run user_name,
|
4
|
-
Runner.new(user_name,
|
5
|
+
def self.run user_name, password
|
6
|
+
Runner.new(user_name, password).run
|
5
7
|
end
|
6
8
|
end
|
7
9
|
end
|
8
10
|
|
9
|
-
require_relative 'hapoalim/
|
11
|
+
require_relative 'hapoalim/string_patches'
|
12
|
+
require_relative 'hapoalim/hpricot_patches'
|
10
13
|
require_relative 'hapoalim/parser'
|
11
14
|
require_relative 'hapoalim/runner'
|
12
15
|
require_relative 'hapoalim/cache'
|
@@ -1,7 +1,5 @@
|
|
1
1
|
module BankCrawlers::Hapoalim
|
2
|
-
|
3
2
|
class Cache
|
4
|
-
|
5
3
|
def get
|
6
4
|
todays_transaction_table_file.read if todays_transaction_table_file.exist?
|
7
5
|
end
|
@@ -12,6 +10,10 @@ module BankCrawlers::Hapoalim
|
|
12
10
|
transaction_table
|
13
11
|
end
|
14
12
|
|
13
|
+
def clear
|
14
|
+
File.unlink todays_transaction_table_file
|
15
|
+
end
|
16
|
+
|
15
17
|
private
|
16
18
|
|
17
19
|
def todays_transaction_table_file
|
@@ -21,7 +23,5 @@ module BankCrawlers::Hapoalim
|
|
21
23
|
def dir
|
22
24
|
"tmp"
|
23
25
|
end
|
24
|
-
|
25
26
|
end
|
26
|
-
|
27
27
|
end
|
@@ -1,3 +1,4 @@
|
|
1
|
+
require 'capybara/dsl'
|
1
2
|
require 'capybara/poltergeist'
|
2
3
|
|
3
4
|
module BankCrawlers::Hapoalim
|
@@ -7,15 +8,11 @@ module BankCrawlers::Hapoalim
|
|
7
8
|
|
8
9
|
class Crawler
|
9
10
|
include Capybara::DSL
|
10
|
-
|
11
11
|
BASE_URL = "https://login.bankhapoalim.co.il/cgi-bin/poalwwwc"
|
12
|
-
@@urls = {
|
13
|
-
login: "/?language=EN&nls=EN"
|
14
|
-
}
|
15
12
|
|
16
|
-
attr_reader :user_name, :
|
17
|
-
def initialize
|
18
|
-
@user_name, @
|
13
|
+
attr_reader :user_name, :password
|
14
|
+
def initialize *params
|
15
|
+
@user_name, @password = params
|
19
16
|
Capybara.run_server = false
|
20
17
|
Capybara.current_driver = :poltergeist
|
21
18
|
Capybara.app_host = BASE_URL
|
@@ -29,10 +26,9 @@ module BankCrawlers::Hapoalim
|
|
29
26
|
private
|
30
27
|
|
31
28
|
def login
|
32
|
-
visit
|
33
|
-
|
34
|
-
|
35
|
-
fill_in :password, with: password
|
29
|
+
visit 'https://login.bankhapoalim.co.il/cgi-bin/poalwwwc?reqName=getLogonPage&TYPE=33554432&REALMOID=06-c69c66f9-410d-4bf6-97ed-cda19dfe9525&GUID=&SMAUTHREASON=0&METHOD=GET&SMAGENTNAME=-SM-1HNbaIFTTNjxn%2bA0EVBZ5gOJ8m0FeXOt6VJLKKVGSDR%2bSimot3C2VnK%2bwnLF5QAj&TARGET=-SM-HTTPS%3a%2f%2flogin%2ebankhapoalim%2eco%2eil%2fcgi--bin%2fpoalwwwc%3fdt%3d924%26nls%3dEN'
|
30
|
+
find('#userID').set(user_name)
|
31
|
+
find('#userPassword').set(password)
|
36
32
|
|
37
33
|
click_button 'Sign In'
|
38
34
|
sleep 10
|
@@ -16,17 +16,15 @@ module BankCrawlers::Hapoalim
|
|
16
16
|
private
|
17
17
|
|
18
18
|
def parse_row row
|
19
|
-
items = row.search('td')
|
20
|
-
puts "ROW ITEMS"
|
21
|
-
puts items.inspect
|
19
|
+
items = row.search('td').map(&:clean_text)
|
22
20
|
{
|
23
|
-
created_at:
|
24
|
-
description:
|
25
|
-
number:
|
26
|
-
confirmed_at: items.shift.
|
27
|
-
amount:
|
28
|
-
extra_info:
|
29
|
-
balance:
|
21
|
+
created_at: items.shift.dateify,
|
22
|
+
description: items.shift,
|
23
|
+
number: items.shift,
|
24
|
+
confirmed_at: items.shift.dateify,
|
25
|
+
amount: items.shift.numerify,
|
26
|
+
extra_info: items.shift,
|
27
|
+
balance: items.shift.numerify
|
30
28
|
}
|
31
29
|
rescue
|
32
30
|
nil
|
data/spec/cache_spec.rb
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
require_relative 'spec_helper'
|
2
|
+
|
3
|
+
include BankCrawlers::Hapoalim
|
4
|
+
|
5
|
+
describe Cache do
|
6
|
+
describe "#get" do
|
7
|
+
subject(:cache){ Cache.new }
|
8
|
+
|
9
|
+
before do
|
10
|
+
cache.set("HEY")
|
11
|
+
end
|
12
|
+
|
13
|
+
it "should keep cache today" do
|
14
|
+
expect(cache.get).to eq("HEY")
|
15
|
+
end
|
16
|
+
|
17
|
+
it "should not keep cache tomorrow" do
|
18
|
+
Timecop.freeze(Date.today + 1) do
|
19
|
+
expect(cache.get).not_to eq("HEY")
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
require_relative 'spec_helper'
|
2
|
+
|
3
|
+
include BankCrawlers::Hapoalim
|
4
|
+
|
5
|
+
describe Crawler, vcr: true do
|
6
|
+
describe "#transaction_table" do
|
7
|
+
context 'given valid auth data' do
|
8
|
+
subject(:crawler) do
|
9
|
+
raise "You should set credentials in your ENV to run this test" unless ENV['HAPOALIM_USER']
|
10
|
+
Crawler.new ENV['HAPOALIM_USER'], ENV['HAPOALIM_PASSWORD']
|
11
|
+
end
|
12
|
+
|
13
|
+
it 'gets transaction table from online bank' do
|
14
|
+
doc = Hpricot(crawler.transaction_table)
|
15
|
+
title = (doc % 'title').inner_text
|
16
|
+
title[0] = '' # Remove first trash character
|
17
|
+
expect(title).to eq("Account transactions")
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
context 'given invalid auth data' do
|
22
|
+
subject(:crawler) do
|
23
|
+
Crawler.new 'bogus', 'bogus'
|
24
|
+
end
|
25
|
+
|
26
|
+
it 'raises InvalidCredentials' do
|
27
|
+
expect{ crawler.transaction_table }.to raise_error(InvalidCredentials)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,1502 @@
|
|
1
|
+
<html id="HTML_ID"><head>
|
2
|
+
<meta content="IE=EmulateIE8" http-equiv="X-UA-Compatible">
|
3
|
+
<meta content="text/html" http-equiv="Content-Type" charset="iso-8859-8">
|
4
|
+
|
5
|
+
<meta content="no-cache" http-equiv="Pragma"><meta content="0" http-equiv="expires"><meta content="telephone=no" name="format-detection"><style type="text/css" media="screen">object.FusionCharts:focus, embed.FusionCharts:focus {outline: none}</style></head><body marginwidth="0" marginheight="0" onresize="if(window.findPosXY){findPosXY()}; if(window.startBlink){startBlink()}; if(window.showHistotryPopUp){hideHistotryPopUp()}; if(window.findPosPikadon){findPosPikadon()};" onunload="if(window.closeHalon){closeHalon()}if(window.doUnLoad){doUnLoad()}" vlink="#0000A4" class="basicPageBodyClass" onbeforeprint="window_onbeforeprint()" onload="basicOnLoad(); if(window.findPosXY){findPosXY()}; if(window.startBlink){startBlink()}; if(window.putingFieldFocus){putingFieldFocus()}; if(window.findPosPikadon){findPosPikadon()}; if(window.showFlashAshray){showFlashAshray('objFlashAshray','')}; if(window.showFlashMoment){showFlashMoment('objFlashAshray','')};" onafterprint="window_onafterprint()" bgcolor="#fefefe" link="#0000A4" onclick="if(window.doOnClick)doOnClick(event)" text="#000000" onkeypress="ienter(window.event)" onkeyup="doOnKeyUp()" alink="#0000A4" style="margin-right: 19px; "><js_heb_txt>
|
6
|
+
<script async="" src="/new_images/SCRIPTS/webtrends.min.js"></script><script type="text/javascript" src="/standards/js/jquery.js?M=M20140406"></script><script type="text/javascript" src="/standards/js/API/BlockUI/jquery-ui-1.8.14.custom.min.js?M=M20140406"></script><link rel="stylesheet" href="/standards/css/API/BlockUI/default/jquery-ui-1.8.14.custom.css?M=M20140327" type="text/css" media="all"><link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
7
|
+
<script>
|
8
|
+
var tmpp = "55";
|
9
|
+
|
10
|
+
dontUseHtcFile = true;
|
11
|
+
|
12
|
+
function writ(t){
|
13
|
+
if(!window.noWrite)
|
14
|
+
document.write(t);
|
15
|
+
}
|
16
|
+
|
17
|
+
function getOpener(checkParent){
|
18
|
+
topVar = window;
|
19
|
+
if(window.opener)
|
20
|
+
topVar = opener;
|
21
|
+
if(topVar.opener)
|
22
|
+
topVar = topVar.opener;
|
23
|
+
if(checkParent){
|
24
|
+
if(topVar.parent.name == checkParent){
|
25
|
+
topVar = topVar.parent;
|
26
|
+
}
|
27
|
+
else if(checkParent == "basicWin"){
|
28
|
+
try{
|
29
|
+
if(topVar.parent.name.indexOf(checkParent) >-1){
|
30
|
+
topVar = topVar.parent.opener;
|
31
|
+
}
|
32
|
+
}
|
33
|
+
catch(e){}
|
34
|
+
}
|
35
|
+
}
|
36
|
+
return topVar;
|
37
|
+
}
|
38
|
+
|
39
|
+
if(!window.pageUTF8) {
|
40
|
+
pageUTF8 = "";
|
41
|
+
}
|
42
|
+
BasicPageUTF8 = pageUTF8 == "Y";
|
43
|
+
if(getOpener().top.update){
|
44
|
+
getOpener().top.update("BasicPageUTF8 = " + BasicPageUTF8);
|
45
|
+
}
|
46
|
+
newPresentationPoalim = false;
|
47
|
+
|
48
|
+
var isStandard = 'no';
|
49
|
+
|
50
|
+
</script><script>newPresentationPoalim = true;</script><script src="/new_images/SCRIPTS/BasicPresentationPoalim.js?M=M20140406" language="javaScript"></script>
|
51
|
+
<script src="/new_images/SCRIPTS/BasicPage.js?M=M20140406" language="javaScript"></script><script src="/new_images/SCRIPTS/AdjustBrowsers.js?M=M20140406" language="javaScript"></script><script src="/new_images/SCRIPTS/Objects.js?M=M20140406" language="javaScript"></script><script src="/new_images/SCRIPTS/ERR_MF.js?M=M20140406" language="javaScript"></script><script src="/new_images/SCRIPTS/ErrMfPresentation.js?M=M20140406" language="javaScript"></script><link rel="stylesheet" href="/standards/css/ErrMfPresentation.css?M=M20140327" type="text/css"><meta content="Shekel" name="WT.cg_s">
|
52
|
+
<meta content="Last60TransactionsInEng" name="WT.cg_n"><meta content="Last60TransactionsInEng" name="WT.si_n">
|
53
|
+
|
54
|
+
<meta content="" name="WT.si_p">
|
55
|
+
|
56
|
+
<meta content="init" name="WT.ctfw"><meta content="2" name="WT.mmx"><meta content="" name="WT.isOP"><meta content="2" name="WT.si_x">
|
57
|
+
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
<meta content="912" name="WT.Bank"><meta content="661" name="WT.Brnch"><meta content="35204964" name="WT.diu">
|
62
|
+
<meta content="%D7%A2%D7%95%D7%91%D7%A8+%D7%95%D7%A9%D7%91-%D7%AA%D7%A0%D7%95%D7%A2%D7%95%D7%AA+%D7%90%D7%97%D7%A8%D7%95%D7%A0%D7%95%D7%AA+%D7%91%D7%90%D7%A0%D7%92%D7%9C%D7%99%D7%AA" name="WT.ti">
|
63
|
+
<meta content="395" name="WT.code_op">
|
64
|
+
|
65
|
+
<script src="/new_images/SCRIPTS/webtrends.load.js?M=M20140406" language="javaScript"></script>
|
66
|
+
<script src="/new_images/SCRIPTS/CommonMainContent.js?M=M20140406" language="javaScript"></script><link rel="stylesheet" href="/standards/css/bnhpCommonMainContent.css?M=M20140327" type="text/css" media="all"></js_heb_txt><top_css takepartfromcash="BasicPage"></top_css><top_script takepartfromcash="BasicPage"></top_script><cur_style takepartfromcash="BasicPage"><fix_style takepartfromcash="BasicPage"><styles_netscape><script src="/new_images/SCRIPTS/STYLES.js?M=M20140406" language="javaScript"></script>
|
67
|
+
<style description="dinamic styles newPresentationPoalim...">
|
68
|
+
#tableHeaderLineValue {background-color: #EDF1F5;}
|
69
|
+
.PaddingFromRight {padding-right: 128px; font-weight: bold;}
|
70
|
+
.PaddingFromRightKranot {padding-right: 60px; color: #003366; font-weight: bold;}
|
71
|
+
.Hiza {color: #003366; font-weight: bold;}
|
72
|
+
.Bikush {color: #003366; font-weight: bold;}
|
73
|
+
.BorderBikushAndHiza {border: ;}
|
74
|
+
.BlueBuffer {background-image:url(/new_images/newPresentationPoalim/Point3_Blue.gif); background-repeat:repeat-y;}
|
75
|
+
.ImgHadashBg {background-image: url(/new_images/newPresentationPoalim/Img_New.gif); background-repeat: no-repeat;}
|
76
|
+
.PopUpBlueLineHeader {background-color: ; height: 0px;}
|
77
|
+
.PopUpCompareBorderBlue {border: 1px solid #D6DBE1;}
|
78
|
+
.PopUpBoldBlue {font-weight: bold;}
|
79
|
+
.ColorToRed {color: #003366;}
|
80
|
+
.FontColorBold {font-weight: bold; color: #003366;}
|
81
|
+
.FontColorWriter {font-weight: normal;}
|
82
|
+
.BgDocKaspym {background-color: #DBDFE5;}
|
83
|
+
.HeightRow {height: 25px;}
|
84
|
+
.BorderForScroller {border: 1px solid #D6DBE1; border-top: 0px solid}
|
85
|
+
.BlueLineProfile {background-color: #DBDFE5; height: 1px;}
|
86
|
+
.DetailsTitle {background-color: #FFFFFF; font-size: 17px; color: #003366; font-weight: bold; text-decoration: none;}
|
87
|
+
.bgOfGraph {background-color: #FFFFFF;}
|
88
|
+
.MarginFromTop {margin-top: 45px; border: 1px solid #D6DBE1;}
|
89
|
+
.ImgArrow {}
|
90
|
+
.OverflowBorder {border: 1px solid #D4DBE1; direction: rtl; margin-top: 10px;}
|
91
|
+
.paddingRight5 {padding-right: 10px;}
|
92
|
+
.HeaderBgVirtual {color: #003366; background-color: #96DAE2; font-weight: normal;}
|
93
|
+
.HeaderBottomBg {background-color: #C6D2D7; color: black; font-weight: normal;}
|
94
|
+
.GreenBorderTable {border: 2px solid #93EEC0;}
|
95
|
+
.BorderDetails {width: 95%; background-color: #FFFFFF;}
|
96
|
+
.CellBg {background-color: #EFEFF7; padding-top: 5px; padding-bottom: 5px;}
|
97
|
+
.BgTableStock {background-color: #EFEFF7;}
|
98
|
+
.ItrotHeader {background-color: #FFFFFF;}
|
99
|
+
.BorderMadadTicker {border-top: 1px solid #C60000; border-bottom: 1px solid #C60000; border-left: 1px solid #C60000; border-right: 1px solid #C60000;}
|
100
|
+
.BorderRedLR {}
|
101
|
+
.Realtime_Bg_Img {background-image:url(/new_images/newPresentationPoalim/HE/btn_realinfo.gif); background-repeat: no-repeat; width: 106px; height: 21px;}
|
102
|
+
.Refresh_Bg_Img {background-image:url(/new_images/newPresentationPoalim/HE/btnRefresh.gif); background-repeat: no-repeat; width: 100px; height: 20px;}
|
103
|
+
.DetailsTitleTicker {background-color: #FFFFFF;}
|
104
|
+
.TdHeaderTicker {color: #5C81AE;}
|
105
|
+
.HeaderColorTicker {color: #003366; font-size: 15px;}
|
106
|
+
.InputTxtBorderColor {border: 1px solid #A5ACB2;}
|
107
|
+
.GreenBorderTable {border: 2px solid #93EEC0;}
|
108
|
+
.RedBorderTable {border: 2px solid #C60000;}
|
109
|
+
.maydaOnLineColor {color: #C00000;}
|
110
|
+
.FontColorPopUP {color: #000000;}
|
111
|
+
.SearchResultColor {}
|
112
|
+
.SearchResultFileds {padding-top: 5px; padding-bottom: 5px;}
|
113
|
+
.ZometLibah {color: #003366; font-weight: bold;}
|
114
|
+
.bgColorOnTimeBlue {background-color: #EDF1F5;}
|
115
|
+
.HeaderPopupOnTime {background-color: #FFFFFF; color: #003366; font-size: 18px;}
|
116
|
+
.SubHeaderPopupOnTime {background-color: #D7DCE4; color: #003264; background: url(/new_images/newPresentationPoalim/table_title.gif) top repeat-x #c6d2d7;}
|
117
|
+
.arial12NoBoldRedTicker {color: #FE0909; font-weight: normal;}
|
118
|
+
.arial12NoBoldGreenTicker{color: #248615; font-weight: normal;}
|
119
|
+
.Question_Img {background-image:url(/new_images/newPresentationPoalim/icon_question.gif); background-repeat: no-repeat; width: 15px; height: 15px;}
|
120
|
+
.BgOfPopup {background-color: #EDF0F5;}
|
121
|
+
.Border_Err {border: 1px solid #C60000; padding-right: 2px;}
|
122
|
+
.Personal_Header_Color {color: #003366; font-weight: bold; font-size: 15px;}
|
123
|
+
.Personal_Header_Chooice{font-size: 12px; font-weight: bold;}
|
124
|
+
.HiztarfutMessage {color: 003366; font-size: 16px; font-weight: bold;}
|
125
|
+
.FontWebMail {color: #003366; font-weight: bold; font-size: 17px;}
|
126
|
+
#trDarkHeaderTextWhite {color: #FFFFFF; font-weight: bold; background-color: #7E90A4;}
|
127
|
+
#trBrownOnBlue {}
|
128
|
+
.BgTransferSalary {background-color: #EDF1F5;}
|
129
|
+
.BgTransferSalaryHasber {background-color: #F2F7FB;}
|
130
|
+
.BgTransferSalaryHasberTable {background-color: #F2F7FB;}
|
131
|
+
.BgTransferSalaryHasberTableBorder {background-color: #F2F7FB;}
|
132
|
+
.BgTransferSalaryButtons {background-color: #FFFFFF;}
|
133
|
+
.trBlackOnGrayNewP {background-color: #EDF1F5;}
|
134
|
+
#trBrownOnLightBlue {color: #3F658C; background-color: #EDF1F5;}
|
135
|
+
.HalvahaBetipulColor {color: #C60000;}
|
136
|
+
.headerStepBgColor {background-image:url(/new_images/newPresentationPoalim/STEPS/headerStepBgColor.gif);}
|
137
|
+
.headerStepSelected {color:#FFFFFF; FONT-WEIGHT: bold; background-image:url(/new_images/newPresentationPoalim/STEPS/headerStepSelected.gif); }
|
138
|
+
.headerStepNotSelected {color:#003366; FONT-WEIGHT: bold; background-image:url(/new_images/newPresentationPoalim/STEPS/headerStepNotSelected.gif);}
|
139
|
+
.headerStepBetweenGreenGreen{background-image:url(/new_images/newPresentationPoalim/STEPS/headerStepBetweenGreenGreen.gif); width:16px;}
|
140
|
+
.headerStepBetweenBlueGreen{background-image:url(/new_images/newPresentationPoalim/STEPS/headerStepBetweenBlueGreen.gif); width:16px;}
|
141
|
+
.headerStepBetweenGreenBlue{background-image:url(/new_images/newPresentationPoalim/STEPS/headerStepBetweenGreenBlue.gif); width:16px;}
|
142
|
+
|
143
|
+
.headerStepSelected_TL {color:#FFFFFF; FONT-WEIGHT: bold; background-image:url(/new_images/newPresentationPoalim/STEPS/headerStepSelected_TL.gif); }
|
144
|
+
.headerStepNotSelected_TL {color:#003366; FONT-WEIGHT: bold; background-image:url(/new_images/newPresentationPoalim/STEPS/headerStepNotSelected_TL.gif);}
|
145
|
+
.headerStepBetweenGreenGreen_TL{background-image:url(/new_images/newPresentationPoalim/STEPS/headerStepBetweenGreenGreen_TL.gif); width:19px;}
|
146
|
+
.headerStepBetweenBlueGreen_TL{background-image:url(/new_images/newPresentationPoalim/STEPS/headerStepBetweenBlueGreen_TL.gif); width:19px;}
|
147
|
+
.headerStepBetweenGreenBlue_TL{background-image:url(/new_images/newPresentationPoalim/STEPS/headerStepBetweenGreenBlue_TL.gif); width:19px;}
|
148
|
+
|
149
|
+
#shukHoonBlueLineNoBold{background-color: #EFEFF7;}
|
150
|
+
#TrControlOnLine{padding-top: 7px; BACKGROUND-COLOR: #FFFFFF;}
|
151
|
+
#trEndingOrange{background-color: #58bd61;color: #FFFFFF; font-size: 14px; font-weight: bold; line-height:25px;}
|
152
|
+
.starHatava {background: url(/new_images/newPresentationPoalim/icon_star.gif) right no-repeat; font-weight: bold; color: #58BC61; padding-right: 14px;}
|
153
|
+
.alertMessages {background: url(/standards/cssImages/common/errMfTitle_line_New.gif) right 0 no-repeat; padding-right: 14px;}
|
154
|
+
.BorderRed {background-image: url(/new_images/newPresentationPoalim/Bg_Pixel.gif);}
|
155
|
+
.BorderRedDown {border-top: 1px solid #C60000;}
|
156
|
+
#tableHeaderLine{color: #003366;; font-weight: normal;}
|
157
|
+
#trBodyOnLine {background-color: #EDF1F5; color: #003366;}
|
158
|
+
.trBodyOnLine {background-color: #EDF1F5; color: #003366;}
|
159
|
+
.MAIN_BANKTABLE {WIDTH:100%;}
|
160
|
+
.TD_TITLE_CHESHBONOT {background-image:url(/new_images/shukHoon/MENU_2/back_toolbar.jpg);}
|
161
|
+
.ammountLabel {color: black;}
|
162
|
+
.labelAmmount {color:#003366;;font-weight:bold;}
|
163
|
+
.tableActionValues{background-color: #EDF1F5; color:' + fontColorGlobal_ + '; border: solid #c00000 1px; border-left-width: 0; border-right-width: 0;}
|
164
|
+
#activeSubMenu{font-size: 18px; color: #003366; font-weight: normal;}
|
165
|
+
.lastAccess {font-size: 11px !important; color: #6B8FB9; float: right;}
|
166
|
+
.BLUE_LINE {background-color: #C00000; height: 1px; padding:0px;}
|
167
|
+
.MEDUIM_TITLE {COLOR: #003366; font-weight: bold; font-size: 14px;}
|
168
|
+
.errMfTitle {
|
169
|
+
background: #FFFFFF;
|
170
|
+
color: #003366;
|
171
|
+
font-size: 13px;
|
172
|
+
font-weight: bold;
|
173
|
+
padding-right: 10px; padding-left: 10px;
|
174
|
+
height: 21px;
|
175
|
+
line-height: 22px;
|
176
|
+
width: 100%;
|
177
|
+
}
|
178
|
+
.errMfBody {border: 1px solid #C60000; padding:7; }
|
179
|
+
.errMfBodyNew {border: solid #003366 1px; padding:5; }
|
180
|
+
.HR {background-color: #D5DBE1; HEIGHT:1px;}
|
181
|
+
.BLUE_FONT {color:#003366;;}
|
182
|
+
.BAR_WHITE_FONT {color:#FFFFFF}
|
183
|
+
.BLUE_DARK {color:#003366;;}
|
184
|
+
.TR_WHITETABLE TH{text-align:false; vertical-align:middle; font-weight: NORMAL; PADDING-TOP: 2px; padding-bottom: 2px;}
|
185
|
+
.TR_WHITETABLE TD{text-align:false; vertical-align:middle; font-weight: NORMAL; PADDING-TOP: 2px; padding-bottom: 2px;}
|
186
|
+
.TR_BANKTABLE {color: black; background: url(/new_images/newPresentationPoalim/table_title.gif) top repeat-x #c6d2d7;}
|
187
|
+
.TR_BANKTABLE_COLOR{background-color: #c6d2d7; color: black;}
|
188
|
+
.TR_BANKTABLE TH{text-align:false; vertical-align:middle; font-weight: NORMAL; PADDING-TOP: 2px; padding-bottom: 2px;}
|
189
|
+
.scroll_thead TH{text-align:false; vertical-align:middle; font-weight: NORMAL; PADDING-TOP: 2px; padding-bottom: 2px;}
|
190
|
+
.TR_BANKTABLE TD{text-align:false; vertical-align:middle; font-weight: NORMAL; PADDING-TOP: 2px; padding-bottom: 2px;}
|
191
|
+
.TR_TOTAL {height: 23px; color: #000000;background: url(/new_images/newPresentationPoalim/totalbg.gif) top repeat-x #C6D2D7;}
|
192
|
+
.TR_TOTAL TH {font-weight: BOLD;}
|
193
|
+
.TR_TOTAL TD {font-weight: BOLD;}
|
194
|
+
.TR_ROW_BANKTABLE {color:#003366;; background-color: #EDF1F4;}
|
195
|
+
#trRowTableBold{color:#003366;; background-color: #EDF1F5; ;FONT-WEIGHT: bold;}
|
196
|
+
#trRowTable{color:#003366;; background-color: #EDF1F5; ;FONT-WEIGHT: normal;}
|
197
|
+
#shukHoonBluePortletHeader{background-image: url(/new_images/newPresentationPoalim/table_title.gif); color: black; padding-top: 2px; padding-bottom: 2px;;}
|
198
|
+
.Table_Border{border:;;}
|
199
|
+
|
200
|
+
#basicPageLineBold{color:#003366;;}
|
201
|
+
.CalendarNew {height: 18px; text-align: center; border: 1px solid #A5ACB2; background: #FFFFFF;}
|
202
|
+
</style>
|
203
|
+
|
204
|
+
<style description="Fonts...">
|
205
|
+
.hide{visibility:hidden;FONT-SIZE:4px;}
|
206
|
+
.dirRTL{direction:ltr;dir:ltr;}
|
207
|
+
.mfError{COLOR: #cf2322;FONT-WEIGHT:bold;background-color:yellow;FONT-SIZE: 13px;}
|
208
|
+
.A_12Only{FONT-SIZE: 12px; }
|
209
|
+
.A_12Only{FONT-SIZE: 12px; }
|
210
|
+
.A_13Only{FONT-SIZE: 13px;}
|
211
|
+
.A_13Only{FONT-SIZE: 13px;}
|
212
|
+
.A_14Only{FONT-SIZE: 14px;}
|
213
|
+
.A_14Only{FONT-SIZE: 14px;}
|
214
|
+
.noBOLD{FONT-WEIGHT: normal;}
|
215
|
+
.BOLD{FONT-WEIGHT: bold;}
|
216
|
+
.arial12{FONT-WEIGHT: bold;}
|
217
|
+
.arial12NoBold{ FONT-WEIGHT: normal;}
|
218
|
+
.arial15{ FONT-SIZE: 15px; FONT-WEIGHT: bold;}
|
219
|
+
.arial15NoBold{ FONT-SIZE: 15px; FONT-WEIGHT: normal;}
|
220
|
+
.fixed{FONT-FAMILY: Fixed Miriam Transparent,Courier New }
|
221
|
+
.textLink{COLOR: #3262a9;TEXT-DECORATION: underline;FONT-SIZE: 12px;cursor: "hand";}
|
222
|
+
.shTextLink{COLOR: #0000C6;TEXT-DECORATION: underline;FONT-SIZE: 12px;cursor: "hand";}
|
223
|
+
|
224
|
+
/*** Black Color ***/
|
225
|
+
.arial12Black {color: color:#003366;;; font-weight: normal;}
|
226
|
+
.arial12BlackB {color: color:#003366;;; font-weight: bold;}
|
227
|
+
.courier12Black{color: color:#003366;;; font-weight: normal; font-family: Courier New ;}
|
228
|
+
|
229
|
+
/*** DarkBlue Color ***/
|
230
|
+
.title1 { color: #1A5694; font-size:12px; text-decoration:none; font-weight:bold;}
|
231
|
+
.title2 { color: #1A5694; font-size: 17px; text-decoration:none; font-weight:bold;}
|
232
|
+
.title15{ color: #1A5694; font-size: 15px; text-decoration:none; font-weight:bold;}
|
233
|
+
.title11{ color: #CF5455; font-size: 14px; text-decoration:none; font-weight:bold; background-color: #ffffff;}
|
234
|
+
.title12{color: #1a5694; font-weight: bold;}
|
235
|
+
|
236
|
+
/*** Red Color ***/
|
237
|
+
.arial12NoBoldRed {color: #CC0000; font-weight: normal;}
|
238
|
+
.arial12BoldRed {color: #CC0000; font-weight: bold;}
|
239
|
+
.arial16BoldRed {color: #CC0000; font-weight: bold; font-size: 16px;}
|
240
|
+
|
241
|
+
/*** Green Color ***/
|
242
|
+
.arial12NoBoldGreen {color: #17ae3e; font-weight: normal;}
|
243
|
+
.arial12BoldGreen {color: #17ae3e; font-weight: bold;}
|
244
|
+
|
245
|
+
/*** WHITE Color ***/
|
246
|
+
.arial12BoldWhiteOnGreen{color: #FFFFFF; font-weight: bold; background-color: #17ae3e;}
|
247
|
+
.arial12BoldWhiteOnRed {color: #FFFFFF; font-weight: bold; background-color: #FF0033;}
|
248
|
+
@media print{.donPrint { display: none; } }
|
249
|
+
@media screen{.onlyForPrint { display: none; }}
|
250
|
+
</style>
|
251
|
+
|
252
|
+
<style description="Objects...">
|
253
|
+
body, textarea, input, select , pre {
|
254
|
+
font-family: arial, "Arial Hebrew";
|
255
|
+
}
|
256
|
+
CalendarNew {height: 18px; text-align: center; border: 1px solid #A5ACB2; background: #FFFFFF;}
|
257
|
+
body {
|
258
|
+
scrollbar-arrow-color: #9BA6B2;
|
259
|
+
scrollbar-3dlight-color: #9BA6B2;
|
260
|
+
scrollbar-darkshadow-color: #9BA6B2;
|
261
|
+
scrollbar-face-color: #E4E9EE;
|
262
|
+
scrollbar-highlight-color: #FFFFFF;
|
263
|
+
scrollbar-shadow-color: #FFFFFF;
|
264
|
+
scrollbar-track-color: #FFFFFF;
|
265
|
+
}
|
266
|
+
textarea {font-size: 12px;}
|
267
|
+
font {font-size: 12px;}
|
268
|
+
table {color:#003366;; font-size: 12px;}
|
269
|
+
input { font-size: 12px;}
|
270
|
+
select { font-size: 12px;}
|
271
|
+
P {margin: 0; margin-top: 5; margin-bottom: 5;}
|
272
|
+
#DialogUI {font-size: 12px; text-align: right;}
|
273
|
+
P.margin0 {margin:0;}
|
274
|
+
</style>
|
275
|
+
|
276
|
+
|
277
|
+
<style description="Buttons...">
|
278
|
+
#buttonAction{
|
279
|
+
|
280
|
+
|
281
|
+
background-color:#004D88;
|
282
|
+
border-top:thin double #FFFFFF;
|
283
|
+
border-left:thin double #FFFFFF;
|
284
|
+
color:white;
|
285
|
+
direction:rtl;
|
286
|
+
font-weight:bold;
|
287
|
+
}
|
288
|
+
|
289
|
+
#buttonInTrBgGray{
|
290
|
+
|
291
|
+
|
292
|
+
background-color:#004D88;
|
293
|
+
border-top:thin double #FFFFFF;
|
294
|
+
border-left:thin double #FFFFFF;
|
295
|
+
color:white;
|
296
|
+
direction:rtl;
|
297
|
+
font-weight:bold;
|
298
|
+
}
|
299
|
+
}
|
300
|
+
</style>
|
301
|
+
|
302
|
+
<style description="tr...">
|
303
|
+
.blackOnGray {color: black; font-weight: normal; background-color: #E2E2DD;}
|
304
|
+
.paddingRight6 {padding-right: 6px;}
|
305
|
+
.paddingAll6 {padding-right: 6px; padding-top: 6px; padding-bottom: 6px; padding-left: 6px;}
|
306
|
+
|
307
|
+
#peddinng {padding-right: 4px; padding-left: 4px; padding-top: 4px; padding-BOTTOM: 4px;}
|
308
|
+
#noPed {padding-right: 0px; padding-left: 0px; padding-top: 0px; padding-BOTTOM: 0px;}
|
309
|
+
#trBlackOnBlue {color: black; background-color: #D3E3F1;}
|
310
|
+
#orange {color: #e67e39; font-weight: normal;}
|
311
|
+
#orangeBold {color: #e67e39; font-weight: bold;}
|
312
|
+
|
313
|
+
#trBlackOnGray {color: black; font-weight: normal; background-color: ;}
|
314
|
+
|
315
|
+
#trBlackOnENDINGSCREEN{color: black; font-weight: normal; background-color: #EFF5F8;}
|
316
|
+
|
317
|
+
#trBlackOnGrayB {color: black; font-weight: bold; background-color: #E2E2DD;}
|
318
|
+
|
319
|
+
#BlueOnBlueB {color: #003366; font-weight: bold; background-color: #D3E3F1;}
|
320
|
+
#10BlueOnBlueB {color: #003366; font-weight: bold; background-color: #D3E3F1; font-size: 10px;}
|
321
|
+
#BlueOnBlueB {color: #003366; font-weight: bold; background-color: #D3E3F1;}
|
322
|
+
|
323
|
+
#BlueOnBlue {color: #003366; font-weight: normal; background-color: #D3E3F1;}
|
324
|
+
#BlueOnBlue {color: #003366; font-weight: normal; background-color: #D3E3F1;}
|
325
|
+
|
326
|
+
#10BlueOnBlue {color: #003366; background-color: #D3E3F1; font-size: 10px; font-weight: normal;}
|
327
|
+
#BlueOnBlue10 {color: #003366; background-color: #D3E3F1; font-size: 10px; font-weight: normal;}
|
328
|
+
|
329
|
+
|
330
|
+
#trRedOnGray12 {color: #CC0000; background-color: #E2E2DD;}
|
331
|
+
|
332
|
+
#trRedOnBlue12 {color: #CC0000; background-color: #D3E3F1;}
|
333
|
+
|
334
|
+
#trRed12 {color: #CC0000; font-weight: normal;}
|
335
|
+
|
336
|
+
#trBlueOnWhite12B {color: #003366; font-weight: bold;}
|
337
|
+
|
338
|
+
#trBlueOnWhite12 {color: #003366;}
|
339
|
+
|
340
|
+
/*** tr 15 Black On Gray ***/
|
341
|
+
#trArial15BgGrayNoBold {color: black; font-size: 15px; background-color: #E2E2DD;}
|
342
|
+
|
343
|
+
/*** tr 12 ShukHoon Blue header Bold***/
|
344
|
+
#shHeaderB {color: black; font-weight: bold; background-color: #B4D2E2;}
|
345
|
+
|
346
|
+
/*** tr 12 ShukHoon Blue ZEBRA table line light***/
|
347
|
+
#shZebraLight {color: #003366; font-weight: normal; background-color: #E2ECF1;}
|
348
|
+
|
349
|
+
/*** tr 12 ShukHoon Blue On lightBlue Bold***/
|
350
|
+
#shukHoonBlueLine {color: #003366; font-weight: bold; background-color: #F5F9FA;}
|
351
|
+
|
352
|
+
/*** tr 12 ShukHoon On Light_Blue Bold ***/
|
353
|
+
#shukHoontrHeaderOnlineBlue{color: #5C80AE; font-weight: bold; background-color: #B4D2E2;}
|
354
|
+
|
355
|
+
/*** tr 12 Black On bright Gray ***/
|
356
|
+
#tr12BrightGray {color: black; background-color: #F0F0F0;}
|
357
|
+
|
358
|
+
#BlackOnGray {color: black; font-weight: normal; background-color: #E2E2DD;}
|
359
|
+
#BlackOnGray {color: black; font-weight: normal; background-color: #E2E2DD;}
|
360
|
+
|
361
|
+
#10BlackOnGray {color: black; font-weight: normal; background-color: #E2E2DD; font-size: 10px;}
|
362
|
+
|
363
|
+
/*** tr 12 Blue On White Bold ***/
|
364
|
+
#BlueOnWhiteB {color: #003366; font-weight: bold; background-color: #FFFFFF;}
|
365
|
+
#BlueOnWhiteB {color: #003366; font-weight: bold; background-color: #FFFFFF;}
|
366
|
+
|
367
|
+
/*** tr 12 Blue On White ***/
|
368
|
+
#BlueOnWhite {color: #003366; font-weight: normal; background-color: #FFFFFF;}
|
369
|
+
#BlueOnWhite {color: #003366; font-weight: normal; background-color: #FFFFFF;}
|
370
|
+
|
371
|
+
/*** tr 15 Blue On White ***/
|
372
|
+
#15BlueOnWhite {color: #003366; font-weight: normal; background-color: #FFFFFF; font-size: 15px;}
|
373
|
+
#BlueOnWhite15 {color: #003366; font-weight: normal; background-color: #FFFFFF; font-size: 15px;}
|
374
|
+
|
375
|
+
/*** tr 17 Blue On White Bold ***/
|
376
|
+
#activeMenu {color: #003366; font-weight: normal; background-color: #FFFFFF; font-size: 18;}
|
377
|
+
|
378
|
+
/*** tr 12 Orange On White***/
|
379
|
+
#trTransferEndingOrange {color: #FFFFFF; font-weight: bold; background-color: #FF942D; font-size: 14px; line-height:25px;}
|
380
|
+
|
381
|
+
/*** tr 12 Orange On White***/
|
382
|
+
#trEndingBlue {color: #FFFFFF; font-weight: bold; background-color: #8EB7E2; font-size: 14px; line-height:25px;}
|
383
|
+
|
384
|
+
/*** tr 12 On Light_Blue Bold ***/
|
385
|
+
#trHeaderOnlineBlue {color: #1A5694; font-weight: bold; background-color: #7CA9CD;}
|
386
|
+
|
387
|
+
/*** tr 12 white On Light_Blue Bold ***/
|
388
|
+
#trHeaderTextWhite {color: #FFFFFF; font-weight: bold; background-color: #7CA9CD;}
|
389
|
+
|
390
|
+
/*** link Orange On White ***/
|
391
|
+
#link12 {color: #e67e39; font-weight: bold; background-color: #ffffff;}
|
392
|
+
|
393
|
+
/*** link Orange On White Not Bold***/
|
394
|
+
#link12NoBold {color: #e67e39; font-weight: normal; background-color: #ffffff;}
|
395
|
+
|
396
|
+
/*** link Blue Bold***/
|
397
|
+
#link12BlueBold {color: #3262A9; font-weight: bold;}
|
398
|
+
|
399
|
+
/*** link Red ***/
|
400
|
+
#link12Blue:hover {color: #CC0000;}
|
401
|
+
|
402
|
+
/*** white line ***/
|
403
|
+
#hrWhite {color: #ffffff; width: 100%; height: 1px;}
|
404
|
+
|
405
|
+
#endScreenBG {background-color: #EFF5F8; font-weight: normal;}
|
406
|
+
#transferEndScreenBG {background-color: #FFF9F3; font-weight: normal;}
|
407
|
+
#endScreenBGB {background-color: #EFF5F8; font-weight: bold;}
|
408
|
+
#B {font-weight: bold;}
|
409
|
+
#B {font-weight: bold;}
|
410
|
+
#trInputsInWhiteTable {color: #003366; background-color: #B2CCE2; font-weight: normal;}
|
411
|
+
#trBlackOnDarkGrayB {color: black; background-color: #D2D2C2; font-weight: bold;}
|
412
|
+
#trBlackOnDarkGray {color: black; background-color: #D2D2C2; font-weight: normal;}
|
413
|
+
</style>
|
414
|
+
<style id="blueStyle">
|
415
|
+
/*** tr 12 Blue On Bold ***/
|
416
|
+
#trTotal {height: 23px; color: #000000; background: url(/new_images/newPresentationPoalim/totalbg.gif) top repeat-x #C6D2D7;}
|
417
|
+
//#trTotal{BACKGROUND-COLOR: #B2CCE2; COLOR: #003366; FONT-WEIGHT: bold;}
|
418
|
+
/*** Blue Color ***/
|
419
|
+
.arial12BoldBlue {color: #003366; font-weight: bold;}
|
420
|
+
.arial12NoBoldBlue {color: #003366; font-weight: normal;}
|
421
|
+
.arial10NoBoldBlue {color: #003366; font-weight: normal; font-size: 10px;}
|
422
|
+
.arial11BoldBlue {color: #003366; font-weight: bold; font-size: 11px;}
|
423
|
+
.arial12NoBoldDarkBlue {color: #0000C6; font-weight: normal;}
|
424
|
+
.arial15BoldBlue {color: #003366; font-weight: bold; font-size: 15px;}
|
425
|
+
.arial15BoldRed {color: #c00000; font-weight: bold; font-size: 15px;}
|
426
|
+
.arial17BoldBlue {color: #003366; font-weight: bold; font-size: 17px;}
|
427
|
+
/*** link Blue ***/
|
428
|
+
#link12Blue {color: #3262A9;}
|
429
|
+
#shHeader2B {background-color: #D3E3F1; color: #003366; font-weight: bold;}
|
430
|
+
|
431
|
+
</style>
|
432
|
+
<style description="Links...">
|
433
|
+
A:link {text-decoration: underline ; color: #3262A9;}
|
434
|
+
A:visited {text-decoration: underline ; color: #3262A9;}
|
435
|
+
A:hover {text-decoration: none ; color: #C60000;}
|
436
|
+
//A:active {text-decoration: none ; color: #C60000;}
|
437
|
+
A:active {color:#003366;}
|
438
|
+
A.darkLink:link {color: #003366;}
|
439
|
+
A.darkLink:visited {color: #003366;}
|
440
|
+
A.darkLink:hover {color:#C60000}
|
441
|
+
A.darkLink:active {color:#C60000}
|
442
|
+
</style>
|
443
|
+
<style description="Links Of Compre Kranot & Stocks...">
|
444
|
+
A.TabsColor:link {text-decoration: none; color: #003366;}
|
445
|
+
A.TabsColor:visited {text-decoration: none; color: #003366;}
|
446
|
+
A.TabsColor:hover {text-decoration: none; color: #C60000;}
|
447
|
+
A.TabsColor:active {text-decoration: none; color: #003366;}
|
448
|
+
</style>
|
449
|
+
<style id="blackStyle" disabled="">
|
450
|
+
/*** tr 12 Black On Bold ***/
|
451
|
+
#trTotal {color: black; font-weight: bold; background-color: #B2CCE2;}
|
452
|
+
/*** Black Color ***/
|
453
|
+
.arial12BoldBlue {font:bold 12px arial;color: #043367;}
|
454
|
+
.arial12NoBoldBlue {color: black; font-weight: normal;}
|
455
|
+
.arial10NoBoldBlue {color: black; font-weight: normal; font-size: 10px;}
|
456
|
+
.arial11BoldBlue {color: black; font-weight: bold; font-size: 11px;}
|
457
|
+
.arial12NoBoldDarkBlue {color: black; font-weight: normal;}
|
458
|
+
.arial15BoldBlue {color: black; font-weight: bold; font-size: 15px;}
|
459
|
+
.arial17BoldBlue {color: black; font-weight: bold; font-size: 17px;}
|
460
|
+
/*** link Blue ***/
|
461
|
+
#link12Blue {color: black;}
|
462
|
+
#shHeader2B {color: black; font-weight: bold; background-color: #D3E3F1;}
|
463
|
+
|
464
|
+
</style>
|
465
|
+
<style description="getStyleNewPoalim...">
|
466
|
+
table.main_content_wrapper{
|
467
|
+
width: 100%;
|
468
|
+
}
|
469
|
+
.dir_side{
|
470
|
+
direction: rtl;
|
471
|
+
}
|
472
|
+
td.content5{
|
473
|
+
padding-right: 0px;
|
474
|
+
padding-top:5;
|
475
|
+
}
|
476
|
+
table.table_btns{
|
477
|
+
border: solid 1px #D6DBE1;
|
478
|
+
width: 100%;
|
479
|
+
|
480
|
+
}
|
481
|
+
table.table_btns a{
|
482
|
+
color: #3262AC;
|
483
|
+
}
|
484
|
+
table.table_btns a:hover{
|
485
|
+
color: #C60000;
|
486
|
+
}
|
487
|
+
td.btns_links{
|
488
|
+
border-bottom: solid 1px #D6DBE1;
|
489
|
+
height: 32px;
|
490
|
+
text-align: center;
|
491
|
+
}
|
492
|
+
td.btns_links ul{
|
493
|
+
margin: 0px auto;
|
494
|
+
}
|
495
|
+
td.btns_links li{
|
496
|
+
float: right;
|
497
|
+
background: url(/new_images/newPresentationPoalim/HE/red_arrow.gif) no-repeat right 6px;
|
498
|
+
padding-right: 7px;
|
499
|
+
margin-left: 21px;
|
500
|
+
}
|
501
|
+
td.start_btns{
|
502
|
+
text-align: center;
|
503
|
+
}
|
504
|
+
td.start_btns div{
|
505
|
+
float: right;
|
506
|
+
text-align: center;
|
507
|
+
}
|
508
|
+
div.btns_bottom{
|
509
|
+
width: 100%;
|
510
|
+
height: 9px;
|
511
|
+
background: url(/new_images/newPresentationPoalim/btns_bottom.gif) no-repeat left top;
|
512
|
+
}
|
513
|
+
table.table_btn{
|
514
|
+
width: 100%;
|
515
|
+
margin: 10px 0px;
|
516
|
+
}
|
517
|
+
|
518
|
+
.float_left{
|
519
|
+
float: left;
|
520
|
+
}
|
521
|
+
div.start_btn_r{
|
522
|
+
background: url(/new_images/newPresentationPoalim/btn_start_r.png) right no-repeat;
|
523
|
+
height: 30px;
|
524
|
+
}
|
525
|
+
div.start_btn_l{
|
526
|
+
background: url(/new_images/newPresentationPoalim/btn_start_l.png) left no-repeat;
|
527
|
+
height: 30px;
|
528
|
+
color: #C60000;
|
529
|
+
|
530
|
+
}
|
531
|
+
div.start_btn_l a{
|
532
|
+
color: #C60000 !important;
|
533
|
+
text-decoration: none !important;
|
534
|
+
cursor: pointer;
|
535
|
+
display: block;
|
536
|
+
width: 100%;
|
537
|
+
height: 100%;
|
538
|
+
}
|
539
|
+
div.start_btn_l a:hover, div.start_btn_l a:hover span{
|
540
|
+
color: #FFFFFF !important;
|
541
|
+
}
|
542
|
+
div.start_btn_l a span{
|
543
|
+
font-weight: bold !important;
|
544
|
+
display: block;
|
545
|
+
padding: 3px 15px 0px 40px
|
546
|
+
}
|
547
|
+
div.start_btn_r_on{
|
548
|
+
background: url(/new_images/newPresentationPoalim/btn_start_r_on.png) right no-repeat;
|
549
|
+
height: 30px;
|
550
|
+
color: #FFFFFF;
|
551
|
+
|
552
|
+
}
|
553
|
+
tr.confirmation span{
|
554
|
+
float: left;
|
555
|
+
}
|
556
|
+
tr.confirmationRight span{
|
557
|
+
float: right;
|
558
|
+
}
|
559
|
+
font.red_bullet1{
|
560
|
+
FONT-SIZE:1em;
|
561
|
+
width:7;
|
562
|
+
height:12;
|
563
|
+
background: url(/new_images/newPresentationPoalim/red_bullet1.gif) top no-repeat;}
|
564
|
+
.solidBorderRed{border:solid #CC0000 1px;}
|
565
|
+
</style></styles_netscape></fix_style></cur_style><script language="JavaScript">
|
566
|
+
var shukHoon_RTInterval_Tiker = "30000";
|
567
|
+
var shukHoon_RTInterval_LastIndexes = "30000";
|
568
|
+
var shukHoon_RTInterval_LastIndexes_Graph = "30";
|
569
|
+
var shukHoon_RTInterval_Mivzakim = "30000";
|
570
|
+
var shukHoon_RTInterval_Karteset = "30000";
|
571
|
+
var shukHoon_RTInterval_Karteset_Graph = "30";
|
572
|
+
var shukHoon_RTInterval_MddKarteset = "30000";
|
573
|
+
var shukHoon_RTInterval_MddKarteset_Graph = "30";
|
574
|
+
</script><script src="/new_images/SCRIPTS/FusionCharts.js?M=M20140406" language="javaScript"></script><script language="JavaScript">
|
575
|
+
function callWT(fld) {
|
576
|
+
if ("yes"=="yes") try {
|
577
|
+
var args = "2|"+fld+"|";
|
578
|
+
var delay = "50";
|
579
|
+
if (fld.indexOf("cont") > -1 || fld.indexOf("cancel") >-1) {
|
580
|
+
if (delay!=="") {
|
581
|
+
Webtrends.multiTrack({argsa: ['WT.si_p', args],delayTime:delay});
|
582
|
+
}
|
583
|
+
}
|
584
|
+
else {
|
585
|
+
dcsMultiTrack('WT.si_p', args);
|
586
|
+
}
|
587
|
+
} catch (e) { }
|
588
|
+
}
|
589
|
+
|
590
|
+
function callWTvirtual(cg_s, cg_n, si_n, si_x, code_op, beforeSend) {
|
591
|
+
if ("yes"=="yes") try {
|
592
|
+
if (beforeSend) {
|
593
|
+
var delay = "50";
|
594
|
+
if (delay!=="") {
|
595
|
+
Webtrends.multiTrack({argsa: ['WT.cg_s', cg_s, 'WT.cg_n', cg_n, 'WT.si_n', si_n, 'WT.si_x', si_x, 'WT.code_op', code_op],delayTime:delay});
|
596
|
+
return;
|
597
|
+
}
|
598
|
+
}
|
599
|
+
dcsMultiTrack('WT.cg_s', cg_s, 'WT.cg_n', cg_n, 'WT.si_n', si_n, 'WT.si_x', si_x, 'WT.code_op', code_op);
|
600
|
+
} catch (e) { }
|
601
|
+
}
|
602
|
+
|
603
|
+
function writ(t){
|
604
|
+
if(!window.noWrite)
|
605
|
+
document.write(t);
|
606
|
+
}
|
607
|
+
|
608
|
+
var showXmlID = "Last60TransactionsInEng";
|
609
|
+
var sepGrpBnk = "yes";
|
610
|
+
var iskiEN = "";
|
611
|
+
var kidomot = "02|03|04|08|09|072|073|074|076|077|050|052|053|054|055|057|058|059|";
|
612
|
+
var nph = "";
|
613
|
+
var newPresentationPoalimLinks = "";
|
614
|
+
elementCalc = null;
|
615
|
+
elementCopyToCalc = null;
|
616
|
+
var browserName = navigator.appName
|
617
|
+
var indNetScape = browserName.indexOf("Netscape");
|
618
|
+
var indMSIE = browserName.indexOf("Microsoft");
|
619
|
+
var language = 'EN';
|
620
|
+
var msgTiltle=""
|
621
|
+
var userAg = navigator.userAgent;
|
622
|
+
var indMac = userAg.indexOf("Macintosh");
|
623
|
+
var halon = null;
|
624
|
+
var enterButton = null;
|
625
|
+
var booleanHivHuv = true;
|
626
|
+
var handleTimeoutUnused = null;
|
627
|
+
var DoHere = 1 ;
|
628
|
+
var needvalid = '';
|
629
|
+
var checkStep = true;
|
630
|
+
var ExistNetscapeFunction = false;
|
631
|
+
var MoveStepToTop = true;
|
632
|
+
var show_newConfimInLogon = 'yesNewPopUpXml';
|
633
|
+
var newPresentation = 'yes';
|
634
|
+
var req_bankpoalimDomain = 'login.bankhapoalim.co.il';
|
635
|
+
script_nameVar = "/cgi-bin/poalwwwc";
|
636
|
+
menuParam = ""
|
637
|
+
tranClassName = "Last60TransactionsInEng";
|
638
|
+
transactionId = "Last60TransactionsInEng";
|
639
|
+
SelectEnabled = "Y";
|
640
|
+
yymmdd_htm = '_2014-04-17.htm';
|
641
|
+
inPrint_get_innerHtmlFromArr = (transactionId != "HalvaotMatach" && !window.dontChangePrint);
|
642
|
+
sizeAcc = "1";
|
643
|
+
var accManage = 'no' == 'yes' && sizeAcc >= 20;
|
644
|
+
var nextTranDoIt = "";
|
645
|
+
var todayDate = new Date();
|
646
|
+
var serverTime = "2014-04-17 21:25:39.91";
|
647
|
+
var isOpTid = "";
|
648
|
+
|
649
|
+
if(window.updateTodayDate){
|
650
|
+
updateTodayDate(serverTime);
|
651
|
+
}
|
652
|
+
if (top.kc2lak && "p"=="i") {
|
653
|
+
var kc2lak = "yes";
|
654
|
+
top.kc2lak = kc2lak;
|
655
|
+
}
|
656
|
+
var dollarRate = "3.47";
|
657
|
+
var maamValue = "18";
|
658
|
+
if (top.frames.length >0 && top.changeStepForAlert) {
|
659
|
+
if (checkStep) {
|
660
|
+
var currentStepInTran = "2";
|
661
|
+
currentStepInTran = parseInt(currentStepInTran) ;
|
662
|
+
var NumberOfStagesInTran = "2";
|
663
|
+
NumberOfStagesInTran = parseInt(NumberOfStagesInTran) ;
|
664
|
+
if ((MoveStepToTop) && (!isNaN(NumberOfStagesInTran)) && (!isNaN(currentStepInTran))) {
|
665
|
+
if (parent != window)
|
666
|
+
top.changeStepForAlert(currentStepInTran, NumberOfStagesInTran)
|
667
|
+
}
|
668
|
+
else {
|
669
|
+
if(parent != window)
|
670
|
+
top.changeStepForAlert(0,0);
|
671
|
+
}
|
672
|
+
}
|
673
|
+
else {
|
674
|
+
top.changeStepForAlert(0,0);
|
675
|
+
}
|
676
|
+
}
|
677
|
+
var isRTExperience = 'yes';
|
678
|
+
var dbKey_showPrivateBanking = 'no';
|
679
|
+
var dwxTemp = '857555068700599876';
|
680
|
+
|
681
|
+
frameName = '';
|
682
|
+
</script><kampyle_css takepartfromcash="BasicPage"></kampyle_css><script>
|
683
|
+
if(top.bank=="912" || top.bank=="00")
|
684
|
+
{
|
685
|
+
writ('<TITLE>BankHapoalim</TITLE>')
|
686
|
+
}
|
687
|
+
else
|
688
|
+
{
|
689
|
+
writ('<TITLE></TITLE>')
|
690
|
+
}
|
691
|
+
</script><title> Account transactions</title><style>
|
692
|
+
.basicPageBodyClass {
|
693
|
+
margin:10;
|
694
|
+
margin-top:3;
|
695
|
+
overflow:auto !important;
|
696
|
+
direction:ltr;
|
697
|
+
-bracket-:[;
|
698
|
+
direction:rtl;
|
699
|
+
];
|
700
|
+
direction:ltr\9;
|
701
|
+
}
|
702
|
+
</style>
|
703
|
+
<div style="direction:ltr;" class="basicPageBodyWrap">
|
704
|
+
<form action="/cgi-bin/poalwwwc" name="iform" method="POST" onsubmit="return submitRequest()">
|
705
|
+
<input name="input_fromAgg" type="hidden" value=""><input name="reqName" type="hidden" value="action"><input name="transactionId" type="hidden" value="Last60TransactionsInEng"><input name="menuParam" type="hidden" value=""><input name="PGcode" type="hidden" value=""><input name="step" type="hidden" value="1"><input name="u" type="hidden" value="p"><input name="tcfo" type="hidden" value="0"><input name="tsfo" type="hidden" value="439"><input name="mmx" type="hidden" value="2"><input name="fromSubMenu" type="hidden" value="Shekel"><input name="qwrt" type="hidden" value="137709"><input name="mpux" type="hidden" value=""><input name="targetView" type="hidden" value=""><input name="dwx" type="hidden" value="857555068700599876"><input name="doc_key" type="hidden" value=""><input name="callerTid" type="hidden" value=""><input name="WTcomeFrom" type="hidden" value=""><style>
|
706
|
+
.ui-dialog {direction:ltr !important}
|
707
|
+
</style><div id="DialogUI"></div><div style="position: absolute; top: 0; left: 100px; z-index: 100; width:555px; height: 438px; background: red; display: none; border: 1px solid green;" id="vpflash">
|
708
|
+
|
709
|
+
</div><script>
|
710
|
+
|
711
|
+
|
712
|
+
function openFlash()
|
713
|
+
{
|
714
|
+
|
715
|
+
|
716
|
+
document.getElementById("vpflash").style.display="";
|
717
|
+
var flashVars = { stylesLoc: "/HEI/", configURL: "/HEI/config.xml?version=20140406" , dwx : "857555068700599876" };
|
718
|
+
var params = { menu: "false", allowSriptAccess: "always", allowNetworking: "all", allowDomain: "*", wmode: "transparent", SeamlessTabbing: "false", accessible: "true" };
|
719
|
+
var attributes = { };
|
720
|
+
swfobject.embedSWF("/HEI/meetingComponent/MeetingComponent.swf?version=20140406", "vpflash", "555", "438", "10.0.0", "playerProductInstall.swf", flashVars, params, attributes, null);
|
721
|
+
document.getElementById("vpflash").style.position = "absolute";
|
722
|
+
document.getElementById("vpflash").style.top = document.documentElement.scrollTop + "px";
|
723
|
+
document.getElementById("vpflash").style.left = ((document.body.clientWidth - document.getElementById("vpflash").offsetWidth)/2) + "px";
|
724
|
+
document.getElementById("vpflash").style.zIndex = "1";
|
725
|
+
document.getElementById("vpflash").style.width = "555px";
|
726
|
+
}
|
727
|
+
function openFlashMeetingList()
|
728
|
+
{
|
729
|
+
|
730
|
+
document.getElementById("vpflash").style.display="";
|
731
|
+
var flashVars = {sType:"meetings", stylesLoc: "/HEI/", configURL: "/HEI/config.xml?version=20140406" , dwx : "857555068700599876" };
|
732
|
+
var params = { menu: "false", allowSriptAccess: "always", allowNetworking: "all", allowDomain: "*", wmode: "transparent", SeamlessTabbing: "false", accessible: "true" };
|
733
|
+
var attributes = { };
|
734
|
+
swfobject.embedSWF("/HEI/meetingComponent/MeetingComponent.swf?version=20140406", "vpflash", "555", "438", "10.0.0", "playerProductInstall.swf", flashVars, params, attributes, null);
|
735
|
+
document.getElementById("vpflash").style.position = "absolute";
|
736
|
+
document.getElementById("vpflash").style.top = document.documentElement.scrollTop + "px";
|
737
|
+
document.getElementById("vpflash").style.left = ((document.body.clientWidth - document.getElementById("vpflash").offsetWidth)/2) + "px";
|
738
|
+
document.getElementById("vpflash").style.zIndex = "1";
|
739
|
+
document.getElementById("vpflash").style.width = "555px";
|
740
|
+
}
|
741
|
+
|
742
|
+
function closeDiv()
|
743
|
+
{
|
744
|
+
document.getElementById("vpflash").style.display="none";
|
745
|
+
}
|
746
|
+
var mailDoKivuni = "";
|
747
|
+
function changeLogoConnect(joinHEIParam) {
|
748
|
+
changeMailDoKivuniToolbar(true);
|
749
|
+
if(getOpener().top.frames.UPPER){
|
750
|
+
if( getOpener().top.frames.UPPER.document){
|
751
|
+
var parObj = getOpener().top.frames.UPPER.document.getElementById('connectLogoSpan');
|
752
|
+
if (parObj){
|
753
|
+
parObj.style.display = (joinHEIParam=='1' ? '' : 'none');
|
754
|
+
}
|
755
|
+
}
|
756
|
+
}
|
757
|
+
if(getOpener().top.joinHEIMainframeSetParam){
|
758
|
+
getOpener().top.joinHEIMainframeSetParam = joinHEIParam;
|
759
|
+
}
|
760
|
+
}
|
761
|
+
|
762
|
+
function changeMailDoKivuniToolbar(fromConnect)
|
763
|
+
{
|
764
|
+
var joinHEIParam = "0";
|
765
|
+
var joinHEIFromUserDetails = "0";
|
766
|
+
if(transactionId == "ShukHoon*first" || fromConnect){
|
767
|
+
if (top.frames.BODY.HEADER && top.frames.BODY.HEADER.document){
|
768
|
+
var obj = top.frames.BODY.HEADER.document.getElementById('mailDoKivooniId');
|
769
|
+
if(!obj){
|
770
|
+
obj = document.getElementById('mailDoKivooniId');
|
771
|
+
}
|
772
|
+
if(obj){
|
773
|
+
if(joinHEIParam && joinHEIParam =='1' && !opener){
|
774
|
+
obj.style.display='none';
|
775
|
+
}else{
|
776
|
+
if(mailDoKivuni && mailDoKivuni == 'yes' && !opener){
|
777
|
+
obj.style.display='';
|
778
|
+
}
|
779
|
+
|
780
|
+
}
|
781
|
+
}
|
782
|
+
}
|
783
|
+
}
|
784
|
+
}
|
785
|
+
|
786
|
+
var joinHEIPrm = "0";
|
787
|
+
var isModulation = "yes";
|
788
|
+
if ( isModulation == 'yes' && !opener){
|
789
|
+
changeLogoConnect(joinHEIPrm);
|
790
|
+
}
|
791
|
+
|
792
|
+
|
793
|
+
function flashAccountOnChange (joinHEI){
|
794
|
+
changeLogoConnect(joinHEI=='true' ? '1' : '0');
|
795
|
+
}
|
796
|
+
|
797
|
+
</script><script src="/new_images/SCRIPTS/Objects.js?M=M20140406" language="javaScript"></script><script type="text/javascript" src="/standards/js/HomePagePoalimStandard.js?&M=M20140406"></script><div style="position: absolute; top: 0; left: 0; display: none;" id="myModalDialogDiv"><img src="/new_images/HE/Loading3c.gif?aa=mm"></div><div id="mainDiv" align="left">
|
798
|
+
<script language="JavaScript">
|
799
|
+
var no_Bank = "912";
|
800
|
+
var no_snif = "661";
|
801
|
+
var newMail = false;
|
802
|
+
</script><table border="0" class="arial12NoBold" cellpadding="0" cellspacing="0" id="mainTableBasicPage">
|
803
|
+
<tbody><tr valign="top" id="mainTable_head_tr" align="left">
|
804
|
+
<td><table border="0" width="100%" class="arial12NoBold" cellpadding="0" cellspacing="0">
|
805
|
+
<tbody><tr style="display: none;"><td colspan="2">
|
806
|
+
<input name="aa" maxlength="1" size="1" type="text" readonly="" disabled="true" value=""><input name="bb" maxlength="1" size="1" type="text" readonly="" disabled="true" value=""></td></tr><tr align="left"><td colspan="2"><table border="0" width="100%" class="arial12NoBold" cellpadding="0" cellspacing="0"></table></td></tr><tr align="left">
|
807
|
+
<td><table border="0" width="100%" class="arial12NoBold" cellpadding="0" cellspacing="0"><tbody><tr align="left">
|
808
|
+
<td><table border="0" width="100%" class="arial12NoBold" cellpadding="0" cellspacing="0"><tbody><tr id="lastAccessTr"><td size="1" align="left"><table border="0" class="lastAccess"><tbody><tr align="left">
|
809
|
+
<td>Your last entry was on</td>
|
810
|
+
<td>17/04/14</td><td>at </td>
|
811
|
+
<td>15:40</td><script language="JavaScript">
|
812
|
+
var paymentSen="";
|
813
|
+
var existTranPaymentsMyBillsWaite = 'no';
|
814
|
+
if (top.update && existTranPaymentsMyBillsWaite == 'yes'){
|
815
|
+
var numPayments = top.update("mybillsWait","get");
|
816
|
+
|
817
|
+
if (numPayments && numPayments.indexOf(")")>-1){
|
818
|
+
var posStart=numPayments.indexOf(")");
|
819
|
+
var posEnd=numPayments.indexOf("(");
|
820
|
+
numPayments=numPayments.substring(posStart+1,posEnd);
|
821
|
+
numPayments = top.reverse(numPayments);
|
822
|
+
if(navigator.appName == "Netscape")
|
823
|
+
{
|
824
|
+
var numPayments = numPayments+'';
|
825
|
+
numPayments = numPayments.substring(1,numPayments.length-1)
|
826
|
+
numPayments = numPayments.split("").reverse("").join("");
|
827
|
+
}
|
828
|
+
|
829
|
+
var usrStr, hrefStr, outStr = "";
|
830
|
+
if ((top.getBankCode() == "" || top.getBankCode() == "12" || top.getBankCode() == "912" || top.getBankCode() == "0") && top.PaymentsAtClickKey == "yes"){
|
831
|
+
hrefStr = "top.performTranAndUpdMenu('PaymentsAtClick','action');";
|
832
|
+
}
|
833
|
+
else{
|
834
|
+
hrefStr = "top.performTranAndUpdMenu('PaymentsMyBillsWaite','action')";
|
835
|
+
}
|
836
|
+
if(!window.newMail) {
|
837
|
+
usrStr = top.vis2log_UTF8(" םיניתממ םימולשת " + numPayments + " ךל שי");
|
838
|
+
}
|
839
|
+
else {
|
840
|
+
usrStr = top.vis2log_UTF8("םיניתממ םימולשת");
|
841
|
+
outStr = " " + numPayments + "-ו , ";
|
842
|
+
if(window.BasicPageUTF8){
|
843
|
+
outStr = " ו-" + numPayments + " ";
|
844
|
+
}
|
845
|
+
}
|
846
|
+
if(window.BasicPageUTF8){
|
847
|
+
paymentSen = "<TD> " + outStr + " <A style='color:#003366' href=\"javascript:" + hrefStr + "\" >" + usrStr + "</A></TD> <TD> </TD>"
|
848
|
+
}
|
849
|
+
else{
|
850
|
+
paymentSen = "<TD><A style='color:#003366' href=\"javascript:" + hrefStr + "\" >" + usrStr + "</A> " + outStr + " </TD>"
|
851
|
+
}
|
852
|
+
}
|
853
|
+
}
|
854
|
+
if (transactionId != "HomePagePoalim")
|
855
|
+
document.write(paymentSen);
|
856
|
+
</script></tr></tbody></table>
|
857
|
+
</td></tr>
|
858
|
+
</tbody></table></td><td align="right"></td></tr></tbody></table></td><td></td></tr><tr align="left">
|
859
|
+
<td align="left"><table border="0" width="100%" class="arial12NoBold" cellpadding="0" cellspacing="0"><tbody><tr>
|
860
|
+
<td align="left"><table border="0" class="arial12NoBold"><tbody><tr align="left">
|
861
|
+
<td nowrap="yes" id="activeSubMenu"><span id="someMainTitle"><somemaintitle takepartfromcash="Last60TransactionsInEng">ILS account</somemaintitle></span></td><td id="15BlueOnWhite">>
|
862
|
+
</td><td nowrap="yes" valign="bottom" id="activeMenu"><sometitle takepartfromcash="Last60TransactionsInEng"> Account transactions</sometitle></td></tr></tbody></table></td><td id="someButtomTd" align="right"><table border="0" class="arial12NoBold" cellpadding="0" cellspacing="0"><tbody><tr><td align="right">
|
863
|
+
</td><td nowrap="yes"> </td><td nowrap="yes"><somegraph takepartfromcash="BasicPage"></somegraph></td></tr></tbody></table></td></tr></tbody></table></td><td></td></tr>
|
864
|
+
<tr>
|
865
|
+
<td class="BLUE_LINE"></td><td valign="top" align="right"><img height="1" border="0" width="1" alt="" src="/new_images/web_connect/nothing.gif" id="MikumCallCenter"></td></tr><tr height="9" id="trTopBarHeigth"><td colspan="2"></td></tr>
|
866
|
+
</tbody></table>
|
867
|
+
</td><td></td></tr><tr height="1px" valign="top" align="left">
|
868
|
+
<td><div class="sargelHashbonot"><table border="0" width="100%" class="arial12NoBold" cellpadding="0" cellspacing="0"><tbody><tr id="trTopBar" align="left"><td class="TD_TITLE_CHESHBONOT" height="32"><table border="0" width="100%" class="arial12NoBold" cellpadding="0" cellspacing="0" align="right"><tbody><tr id="trTopBar" align="left">
|
869
|
+
<td height="30" align="left"><span id="cheshbonotSelect"><table border="0" class="BAR_WHITE_FONT" cellpadding="0" cellspacing="0"><tbody><tr align="left">
|
870
|
+
<td nowrap="yes" id="hasbon"> Account No. </td>
|
871
|
+
<td nowrap="yes" align="left">
|
872
|
+
<script>
|
873
|
+
var numSnifAndAccount = "148418 661";
|
874
|
+
writ("<A dir=\"rtl\">" + top.vis2log_UTF8(numSnifAndAccount) + "</A>");
|
875
|
+
</script><a dir="rtl">148418 661</a>
|
876
|
+
</td>
|
877
|
+
<td nowrap="yes" class="arial12" id="accountIndexTd" align="left" style="display: none; "><select tabindex="1" onchange="return accountIndexChange();" name="accountIndex" class="dirRTL" onclick="window.prevValue = this.value" title="בחירת חשבון" id="allAcountsList">
|
878
|
+
<script>obgSelectAcc = document.iform.accountIndex</script><option value="0" selected="">148418 661
|
879
|
+
|
880
|
+
<script>
|
881
|
+
if(accManage || window.collectDataAcc){
|
882
|
+
l = obgSelectAcc.length-1;
|
883
|
+
accManageArr[l] = new Acc(obgSelectAcc[l].value, "661", "148418", "", obgSelectAcc[l].text, obgSelectAcc[l].selected);
|
884
|
+
}
|
885
|
+
</script>
|
886
|
+
</option><script> writ(getTxtForImg("getAggViewTxt", "")) </script></select>
|
887
|
+
</td><script> writ(getTxtForImg("getAccManageTxt") ) </script><td>
|
888
|
+
</td></tr></tbody></table>
|
889
|
+
</span></td><td nowrap="y" align="right">
|
890
|
+
</td><td id="helpScreen" align="right"><table border="0" cellspacing="5" cellpadding="0"><tbody><tr valign="bottom">
|
891
|
+
<script> writ(getTxtForImg("getPrintTxt")) </script><td width="13" id="printIcon1"> </td><td valign="center" nowrap="" id="printIcon"><a class="darkLink" href="javascript:doPrintHref(); void(0);" style="text-decoration: none; font-size: 12px;"><img onmouseover="this.src="/new_images/newPresentationPoalim/icon_printH.gif"" onmouseout="this.src="/new_images/newPresentationPoalim/icon_print.gif"" align="absmiddle" src="/new_images/newPresentationPoalim/icon_print.gif" border="0" alt="Print" title="Print"></a></td>
|
892
|
+
<script> writ(getTxtForImg("getExcelTxt", "ctfw=init&reqName=action&language=EN&transactionId=Last60TransactionsInEng&subMenuName=Shekel&ts=137709&tf=0.1571177737787366&pSubMenu=undefined&fromSubMenu=Shekel&bxx=912&nsv=y&dwx=857555068700599876&wScr=1280&hScr=800&mmx=2&qwrt=137709&dtcdb=443&menuTranName=Last60TransactionsInEng", "")) </script><td width="13" id="excelIcon1"> </td><td valign="center" nowrap="" id="excelIcon"><a class="darkLink" href="javascript:getMiddelFrame().openExcel(); void(0);" style="text-decoration: none; font-size: 12px;"><img onmouseover="this.src="/new_images/newPresentationPoalim/icon_excelH.gif"" onmouseout="this.src="/new_images/newPresentationPoalim/icon_excel.gif"" align="absmiddle" src="/new_images/newPresentationPoalim/icon_excel.gif" border="0" alt="Excel" title="Excel"></a></td><script> writ(getTxtForImg("getSaveTxt", "RikuzItrotKolelGraph|AlbanatOn|")) </script><script> writ(getTxtForImg("getCalcTxt", "new" )) </script><td width="13" id="1"> </td><td valign="center" nowrap="" id=""><a class="darkLink" href="javascript:openCalcDialog('/new_images/calc/calculator.html?dollar_rate=3.47&maam=18');; void(0);" style="text-decoration: none; font-size: 12px;"><img onmouseover="this.src="/new_images/newPresentationPoalim/icon_calculateH.gif"" onmouseout="this.src="/new_images/newPresentationPoalim/icon_calculate.gif"" align="absmiddle" src="/new_images/newPresentationPoalim/icon_calculate.gif" border="0" alt="Calculator" title="Calculator"></a></td><td> </td></tr></tbody></table>
|
893
|
+
</td></tr>
|
894
|
+
</tbody></table></td></tr><tr height="0" id="TR_WIDTH_TOP_BAR"><td width="555px" id="TD_WIDTH_TOP_BAR"></td></tr>
|
895
|
+
|
896
|
+
</tbody></table>
|
897
|
+
</div></td><td valign="top" style="padding-right: 20px;" rowspan="3" id="MAINTABLE_LEFT_SECTION"><maintable_left_section takepartfromcash="BasicPage"><table border="0" width="100%" class="arial12NoBold" cellpadding="0" cellspacing="0">
|
898
|
+
<tbody><tr align="left"><td colspan="2"></td></tr>
|
899
|
+
<tr align="left"><td colspan="2"></td></tr>
|
900
|
+
<tr><td align="left"><show_ashray_rega_var takepartfromcash="BasicPage"></show_ashray_rega_var></td></tr><tr><td align="left"><left_section takepartfromcash="BasicPage"></left_section></td></tr><tr><td id="helpSection" align="left"><cur_help_section takepartfromcash="BasicPage">
|
901
|
+
</cur_help_section></td></tr><tr><td class="someBannersNoStandartWrapper" align="left"></td></tr></tbody></table></maintable_left_section></td></tr><tr valign="top" id="MAINTABLE_BODY" align="left"><td><table border="0" width="100%" class="arial12NoBold" cellpadding="0" cellspacing="0">
|
902
|
+
<tbody><tr align="left">
|
903
|
+
<td colspan="2"><div class="matefet"><div id="ErrMfPresentationDiv" style="display: none; "><table border="0" width="100%" cellpadding="0" cellspacing="0"><tbody><tr align="left">
|
904
|
+
<td class="shadowSideRight" rowspan="3"></td><td class="topRight"></td><td class="topCenter" colspan="2"></td><td class="topLeft"></td></tr><tr class="middleTable" align="left">
|
905
|
+
<td class="middleRight"></td><td a_lign="left" nowrap="yes" class="iconMsgAndAttentionTdEN">Attention: </td><td a_lign="left" id="newErrorMsgBPEN"></td>
|
906
|
+
<td class="middleLeft"></td></tr><tr align="left">
|
907
|
+
<td class="bottomRight"></td><td class="bottomCenter" colspan="2"></td><td class="bottomLeft"></td></tr><tr align="left">
|
908
|
+
<td colspan="2"></td><td class="shdowBottom" colspan="2"></td><td></td></tr>
|
909
|
+
</tbody></table></div></div></td><td></td></tr><tr id="someDataMainTr"><td valign="top" colspan="1" id="someDataDivPrintLeft" align="left"><place_holder_somedata_left takepartfromcash="BasicPage"></place_holder_somedata_left></td><td valign="top" colspan="2" id="someDataDivPrint" align="left"><input name="answerMe" type="hidden" value="yes"><input name="goNext" type="hidden" value="a"><input name="goBack" type="hidden" value="b"><input name="PageActive" type="hidden" value="1"><div id="dataForPrint">
|
910
|
+
<table border="0" cellspacing="1" cellpadding="4" bgcolor="#fefefe" id="trBlueOnWhite12B"><tbody><tr align="left">
|
911
|
+
<td bgcolor="#ffffff">From:</td><td bgcolor="#ffffff"></td><td><script>
|
912
|
+
if(!window.CalendarNew){
|
913
|
+
document.write('<S' + 'CRIPT language="javaScript" src="/new_images/SCRIPTS/CalendarNew.js?M=M20140406"></' + 'SCRIPT>');
|
914
|
+
CalendarNew = true;
|
915
|
+
}
|
916
|
+
function getHrefCalander(id){
|
917
|
+
if(!window.event){
|
918
|
+
window.event = new Object();
|
919
|
+
window.event.screenX = 100;
|
920
|
+
window.event.screenY = 100;
|
921
|
+
}
|
922
|
+
var res = document.getElementById(id);
|
923
|
+
return res;
|
924
|
+
}
|
925
|
+
languageVar = language;
|
926
|
+
</script><script language="javaScript" src="/new_images/SCRIPTS/CalendarNew.js?M=M20140406"></script><a href="javascript:void(0)" onclick="openCalendar(this.idCalendar ? this.idCalendar : this.attributes['idCalendar'].value, languageVar.substring(0,1) , this, event.screenX, event.screenY)" idcalendar="fromDateCalander" id=""><img border="0" hspace="0" src="/new_images/calendar/images/cal.gif" align="absmiddle"></a><input name="fromDateCalander" id="fromDateCalander" class="CalendarNew" latestvalue="13/04/2014" tabindex="2" onchange="if(window.onChangeCalendar){onChangeCalendar(this);}" type="text" onblur="calInput = this.id; this.value = validateDate(this.value);" title="מתאריך" limitstart="01/12/2013" value="13/04/2014" size="10" limitend="17/04/2014" onfocus="if (window.setTxtDateChoice) setTxtDateChoice();">
|
927
|
+
</td><script language="javascript">
|
928
|
+
var language = 'EN';
|
929
|
+
if(language == "EN") {
|
930
|
+
msgDatesNoGood= "Wrong Date"
|
931
|
+
}
|
932
|
+
else {
|
933
|
+
msgDatesNoGood= "'ךיראת דע -מ' םדקומ תויהל בייח 'ךיראתמ'"
|
934
|
+
}
|
935
|
+
function checkDates() {
|
936
|
+
if (document.iform.toDateCalander){
|
937
|
+
From =document.iform.fromDateCalander.value;
|
938
|
+
To = document.iform.toDateCalander.value;
|
939
|
+
var arrFrom = From.split('/');
|
940
|
+
var arrTo = To.split('/');
|
941
|
+
strFrom = arrFrom[1] + "/" + arrFrom[0] + "/" + arrFrom[2];
|
942
|
+
strTo = arrTo[1] + "/" + arrTo[0] + "/" + arrTo[2];
|
943
|
+
dateFrom = new Date(strFrom);
|
944
|
+
dateTo = new Date(strTo);
|
945
|
+
if (dateFrom.valueOf() >dateTo.valueOf()){
|
946
|
+
return false;
|
947
|
+
}
|
948
|
+
}
|
949
|
+
return true;
|
950
|
+
}
|
951
|
+
</script>
|
952
|
+
<td bgcolor="#ffffff"> </td><td nowrap="yes" bgcolor="#FFFFFF"> To:</td><td bgcolor="#FFFFFF"></td><td><script>
|
953
|
+
if(!window.CalendarNew){
|
954
|
+
document.write('<S' + 'CRIPT language="javaScript" src="/new_images/SCRIPTS/CalendarNew.js?M=M20140406"></' + 'SCRIPT>');
|
955
|
+
CalendarNew = true;
|
956
|
+
}
|
957
|
+
function getHrefCalander(id){
|
958
|
+
if(!window.event){
|
959
|
+
window.event = new Object();
|
960
|
+
window.event.screenX = 100;
|
961
|
+
window.event.screenY = 100;
|
962
|
+
}
|
963
|
+
var res = document.getElementById(id);
|
964
|
+
return res;
|
965
|
+
}
|
966
|
+
languageVar = language;
|
967
|
+
</script><a href="javascript:void(0)" onclick="openCalendar(this.idCalendar ? this.idCalendar : this.attributes['idCalendar'].value, languageVar.substring(0,1) , this, event.screenX, event.screenY)" idcalendar="toDateCalander" id=""><img border="0" hspace="0" src="/new_images/calendar/images/cal.gif" align="absmiddle"></a><input name="toDateCalander" id="toDateCalander" class="CalendarNew" latestvalue="17/04/2014" tabindex="3" onchange="if(window.onChangeCalendar){onChangeCalendar(this);}" type="text" onblur="calInput = this.id; this.value = validateDate(this.value);" title="עד תאריך" limitstart="01/12/2013" value="17/04/2014" size="10" limitend="17/04/2014" onfocus="if (window.setTxtDateChoice) setTxtDateChoice();">
|
968
|
+
</td>
|
969
|
+
<td bgcolor="#FFFFFF" id="dontPrint"><input name="OKBUTTON" type="button" value="Display" onclick="javascript:if(CheckAndsubmit() == true){document.iform.answerMe.value='yes';document.iform.PageActive.value= '1';document.iform.submit();}" id="buttonAction"></td></tr></tbody></table>
|
970
|
+
<table border="0" class="arial12NoBold" id="trBlueOnWhite12">
|
971
|
+
<tbody><tr align="left"><td><font size="+1"><font color="red">*</font> <b>You may view transactions starting from:</b> [Current page: 1]
|
972
|
+
</font></td></tr><tr><td>
|
973
|
+
<table border="0" cellspacing="1" cellpadding="4" bgcolor="#fefefe" id="mytable_body">
|
974
|
+
<tbody><tr valign="top" class="TR_BANKTABLE" align="left">
|
975
|
+
<td align="center"><sort_by title=" מיין עמודה זו "><script> kindSort = "\'date\'"; numCol = 0; defCol = true;</script>
|
976
|
+
<script language="javascript">
|
977
|
+
if(!window.countsSortBy){
|
978
|
+
countsSortBy = 0;
|
979
|
+
}
|
980
|
+
|
981
|
+
countsSortBy++;
|
982
|
+
|
983
|
+
if(window.defColToSort){
|
984
|
+
defColToSortIndex = countsSortBy;
|
985
|
+
defColToSort = null;
|
986
|
+
}
|
987
|
+
|
988
|
+
if((window.numCol || window.numCol == 0) && ( !window.show_sort || window.show_sort == "yes") ){
|
989
|
+
if(!window.kindSortArr) {
|
990
|
+
kindSortArr = new Array();
|
991
|
+
}
|
992
|
+
kindSortArr[numCol] = kindSort;
|
993
|
+
if(!window.indexTableParam) {
|
994
|
+
indexTableParam = "";
|
995
|
+
}
|
996
|
+
if(!window.orgParam) {
|
997
|
+
orgParam = "ORIGINAL";
|
998
|
+
}
|
999
|
+
orgParam = "";
|
1000
|
+
var lang = window.language;
|
1001
|
+
var smallToBigSelected = 'sortBy(\' DOWN ' + orgParam + ' \' , ' + numCol + ',this ,' + kindSort + indexTableParam + ');';
|
1002
|
+
var bigToSmallSelected = 'sortBy(\' UP ' + orgParam + ' \' , ' + numCol + ',this ,' + kindSort + indexTableParam + ');';
|
1003
|
+
writ('<SPAN '
|
1004
|
+
+ ' class="SORT_FOR_TITLE" id='
|
1005
|
+
+ '"' + getSortSpanId () +'" '
|
1006
|
+
+ 'onclick="handleGifSorted(this)" bigToSmallSelected="' + bigToSmallSelected + '" smallToBigSelected="' + smallToBigSelected + '">');
|
1007
|
+
var src = 'sort_down_gray';
|
1008
|
+
if(window.defCol) {
|
1009
|
+
src = 'sort_up_red';
|
1010
|
+
} else if(window.defColToSmall) {
|
1011
|
+
src = 'sort_down_red';
|
1012
|
+
}
|
1013
|
+
writ('<img src=/new_images/HE/' + src + '.gif border="0" width="10" height="5" numCol="' + numCol + '" id="SORT"></img>');
|
1014
|
+
} else {
|
1015
|
+
writ('<SPAN>')
|
1016
|
+
}
|
1017
|
+
|
1018
|
+
defCol = null;
|
1019
|
+
defColToSmall = null;
|
1020
|
+
orgParam = null;
|
1021
|
+
|
1022
|
+
if(!window.dontClearNumCol){
|
1023
|
+
numCol = null;
|
1024
|
+
}
|
1025
|
+
|
1026
|
+
function getSortSpanId () {
|
1027
|
+
return navigator.userAgent.toLowerCase().indexOf ("safari" ) >-1 ? "_SORT_SPAN" : "SORT_SPAN";
|
1028
|
+
}
|
1029
|
+
</script><span class="SORT_FOR_TITLE" id="_SORT_SPAN" onclick="handleGifSorted(this)" bigtosmallselected="sortBy(' UP ' , 0,this ,'date');" smalltobigselected="sortBy(' DOWN ' , 0,this ,'date');"><img src="/new_images/HE/sort_up_red.gif" border="0" width="10" height="5" numcol="0" id="SORT">
|
1030
|
+
<text>Date</text> </span> <algoritem></algoritem>
|
1031
|
+
|
1032
|
+
|
1033
|
+
</sort_by></td><td nowrap="yes"><sort_by title=" מיין עמודה זו "><script> kindSort = "\'ascii\'"; numCol = 1;</script>
|
1034
|
+
<script language="javascript">
|
1035
|
+
if(!window.countsSortBy){
|
1036
|
+
countsSortBy = 0;
|
1037
|
+
}
|
1038
|
+
|
1039
|
+
countsSortBy++;
|
1040
|
+
|
1041
|
+
if(window.defColToSort){
|
1042
|
+
defColToSortIndex = countsSortBy;
|
1043
|
+
defColToSort = null;
|
1044
|
+
}
|
1045
|
+
|
1046
|
+
if((window.numCol || window.numCol == 0) && ( !window.show_sort || window.show_sort == "yes") ){
|
1047
|
+
if(!window.kindSortArr) {
|
1048
|
+
kindSortArr = new Array();
|
1049
|
+
}
|
1050
|
+
kindSortArr[numCol] = kindSort;
|
1051
|
+
if(!window.indexTableParam) {
|
1052
|
+
indexTableParam = "";
|
1053
|
+
}
|
1054
|
+
if(!window.orgParam) {
|
1055
|
+
orgParam = "ORIGINAL";
|
1056
|
+
}
|
1057
|
+
orgParam = "";
|
1058
|
+
var lang = window.language;
|
1059
|
+
var smallToBigSelected = 'sortBy(\' DOWN ' + orgParam + ' \' , ' + numCol + ',this ,' + kindSort + indexTableParam + ');';
|
1060
|
+
var bigToSmallSelected = 'sortBy(\' UP ' + orgParam + ' \' , ' + numCol + ',this ,' + kindSort + indexTableParam + ');';
|
1061
|
+
writ('<SPAN '
|
1062
|
+
+ ' class="SORT_FOR_TITLE" id='
|
1063
|
+
+ '"' + getSortSpanId () +'" '
|
1064
|
+
+ 'onclick="handleGifSorted(this)" bigToSmallSelected="' + bigToSmallSelected + '" smallToBigSelected="' + smallToBigSelected + '">');
|
1065
|
+
var src = 'sort_down_gray';
|
1066
|
+
if(window.defCol) {
|
1067
|
+
src = 'sort_up_red';
|
1068
|
+
} else if(window.defColToSmall) {
|
1069
|
+
src = 'sort_down_red';
|
1070
|
+
}
|
1071
|
+
writ('<img src=/new_images/HE/' + src + '.gif border="0" width="10" height="5" numCol="' + numCol + '" id="SORT"></img>');
|
1072
|
+
} else {
|
1073
|
+
writ('<SPAN>')
|
1074
|
+
}
|
1075
|
+
|
1076
|
+
defCol = null;
|
1077
|
+
defColToSmall = null;
|
1078
|
+
orgParam = null;
|
1079
|
+
|
1080
|
+
if(!window.dontClearNumCol){
|
1081
|
+
numCol = null;
|
1082
|
+
}
|
1083
|
+
|
1084
|
+
function getSortSpanId () {
|
1085
|
+
return navigator.userAgent.toLowerCase().indexOf ("safari" ) >-1 ? "_SORT_SPAN" : "SORT_SPAN";
|
1086
|
+
}
|
1087
|
+
</script><span class="SORT_FOR_TITLE" id="_SORT_SPAN" onclick="handleGifSorted(this)" bigtosmallselected="sortBy(' UP ' , 1,this ,'ascii');" smalltobigselected="sortBy(' DOWN ' , 1,this ,'ascii');"><img src="/new_images/HE/sort_down_gray.gif" border="0" width="10" height="5" numcol="1" id="SORT">
|
1088
|
+
<text>Type of Transaction</text> </span> <algoritem></algoritem>
|
1089
|
+
|
1090
|
+
|
1091
|
+
</sort_by></td><td>Reference</td><td nowrap="yes" align="center"><sort_by title=" מיין עמודה זו "><script> kindSort = "\'date\'"; numCol = 3;</script>
|
1092
|
+
<script language="javascript">
|
1093
|
+
if(!window.countsSortBy){
|
1094
|
+
countsSortBy = 0;
|
1095
|
+
}
|
1096
|
+
|
1097
|
+
countsSortBy++;
|
1098
|
+
|
1099
|
+
if(window.defColToSort){
|
1100
|
+
defColToSortIndex = countsSortBy;
|
1101
|
+
defColToSort = null;
|
1102
|
+
}
|
1103
|
+
|
1104
|
+
if((window.numCol || window.numCol == 0) && ( !window.show_sort || window.show_sort == "yes") ){
|
1105
|
+
if(!window.kindSortArr) {
|
1106
|
+
kindSortArr = new Array();
|
1107
|
+
}
|
1108
|
+
kindSortArr[numCol] = kindSort;
|
1109
|
+
if(!window.indexTableParam) {
|
1110
|
+
indexTableParam = "";
|
1111
|
+
}
|
1112
|
+
if(!window.orgParam) {
|
1113
|
+
orgParam = "ORIGINAL";
|
1114
|
+
}
|
1115
|
+
orgParam = "";
|
1116
|
+
var lang = window.language;
|
1117
|
+
var smallToBigSelected = 'sortBy(\' DOWN ' + orgParam + ' \' , ' + numCol + ',this ,' + kindSort + indexTableParam + ');';
|
1118
|
+
var bigToSmallSelected = 'sortBy(\' UP ' + orgParam + ' \' , ' + numCol + ',this ,' + kindSort + indexTableParam + ');';
|
1119
|
+
writ('<SPAN '
|
1120
|
+
+ ' class="SORT_FOR_TITLE" id='
|
1121
|
+
+ '"' + getSortSpanId () +'" '
|
1122
|
+
+ 'onclick="handleGifSorted(this)" bigToSmallSelected="' + bigToSmallSelected + '" smallToBigSelected="' + smallToBigSelected + '">');
|
1123
|
+
var src = 'sort_down_gray';
|
1124
|
+
if(window.defCol) {
|
1125
|
+
src = 'sort_up_red';
|
1126
|
+
} else if(window.defColToSmall) {
|
1127
|
+
src = 'sort_down_red';
|
1128
|
+
}
|
1129
|
+
writ('<img src=/new_images/HE/' + src + '.gif border="0" width="10" height="5" numCol="' + numCol + '" id="SORT"></img>');
|
1130
|
+
} else {
|
1131
|
+
writ('<SPAN>')
|
1132
|
+
}
|
1133
|
+
|
1134
|
+
defCol = null;
|
1135
|
+
defColToSmall = null;
|
1136
|
+
orgParam = null;
|
1137
|
+
|
1138
|
+
if(!window.dontClearNumCol){
|
1139
|
+
numCol = null;
|
1140
|
+
}
|
1141
|
+
|
1142
|
+
function getSortSpanId () {
|
1143
|
+
return navigator.userAgent.toLowerCase().indexOf ("safari" ) >-1 ? "_SORT_SPAN" : "SORT_SPAN";
|
1144
|
+
}
|
1145
|
+
</script><span class="SORT_FOR_TITLE" id="_SORT_SPAN" onclick="handleGifSorted(this)" bigtosmallselected="sortBy(' UP ' , 3,this ,'date');" smalltobigselected="sortBy(' DOWN ' , 3,this ,'date');"><img src="/new_images/HE/sort_down_gray.gif" border="0" width="10" height="5" numcol="3" id="SORT">
|
1146
|
+
<text>Value Date</text> </span> <algoritem></algoritem>
|
1147
|
+
|
1148
|
+
|
1149
|
+
</sort_by></td><td><sort_by title=" מיין עמודה זו "><script> kindSort = "\'number\'"; numCol = 4;</script>
|
1150
|
+
<script language="javascript">
|
1151
|
+
if(!window.countsSortBy){
|
1152
|
+
countsSortBy = 0;
|
1153
|
+
}
|
1154
|
+
|
1155
|
+
countsSortBy++;
|
1156
|
+
|
1157
|
+
if(window.defColToSort){
|
1158
|
+
defColToSortIndex = countsSortBy;
|
1159
|
+
defColToSort = null;
|
1160
|
+
}
|
1161
|
+
|
1162
|
+
if((window.numCol || window.numCol == 0) && ( !window.show_sort || window.show_sort == "yes") ){
|
1163
|
+
if(!window.kindSortArr) {
|
1164
|
+
kindSortArr = new Array();
|
1165
|
+
}
|
1166
|
+
kindSortArr[numCol] = kindSort;
|
1167
|
+
if(!window.indexTableParam) {
|
1168
|
+
indexTableParam = "";
|
1169
|
+
}
|
1170
|
+
if(!window.orgParam) {
|
1171
|
+
orgParam = "ORIGINAL";
|
1172
|
+
}
|
1173
|
+
orgParam = "";
|
1174
|
+
var lang = window.language;
|
1175
|
+
var smallToBigSelected = 'sortBy(\' DOWN ' + orgParam + ' \' , ' + numCol + ',this ,' + kindSort + indexTableParam + ');';
|
1176
|
+
var bigToSmallSelected = 'sortBy(\' UP ' + orgParam + ' \' , ' + numCol + ',this ,' + kindSort + indexTableParam + ');';
|
1177
|
+
writ('<SPAN '
|
1178
|
+
+ ' class="SORT_FOR_TITLE" id='
|
1179
|
+
+ '"' + getSortSpanId () +'" '
|
1180
|
+
+ 'onclick="handleGifSorted(this)" bigToSmallSelected="' + bigToSmallSelected + '" smallToBigSelected="' + smallToBigSelected + '">');
|
1181
|
+
var src = 'sort_down_gray';
|
1182
|
+
if(window.defCol) {
|
1183
|
+
src = 'sort_up_red';
|
1184
|
+
} else if(window.defColToSmall) {
|
1185
|
+
src = 'sort_down_red';
|
1186
|
+
}
|
1187
|
+
writ('<img src=/new_images/HE/' + src + '.gif border="0" width="10" height="5" numCol="' + numCol + '" id="SORT"></img>');
|
1188
|
+
} else {
|
1189
|
+
writ('<SPAN>')
|
1190
|
+
}
|
1191
|
+
|
1192
|
+
defCol = null;
|
1193
|
+
defColToSmall = null;
|
1194
|
+
orgParam = null;
|
1195
|
+
|
1196
|
+
if(!window.dontClearNumCol){
|
1197
|
+
numCol = null;
|
1198
|
+
}
|
1199
|
+
|
1200
|
+
function getSortSpanId () {
|
1201
|
+
return navigator.userAgent.toLowerCase().indexOf ("safari" ) >-1 ? "_SORT_SPAN" : "SORT_SPAN";
|
1202
|
+
}
|
1203
|
+
</script><span class="SORT_FOR_TITLE" id="_SORT_SPAN" onclick="handleGifSorted(this)" bigtosmallselected="sortBy(' UP ' , 4,this ,'number');" smalltobigselected="sortBy(' DOWN ' , 4,this ,'number');"><img src="/new_images/HE/sort_down_gray.gif" border="0" width="10" height="5" numcol="4" id="SORT">
|
1204
|
+
<text> Debit</text> </span> <algoritem></algoritem>
|
1205
|
+
|
1206
|
+
|
1207
|
+
</sort_by></td><td><sort_by title=" מיין עמודה זו "><script> kindSort = "\'number\'"; numCol = 5;</script>
|
1208
|
+
<script language="javascript">
|
1209
|
+
if(!window.countsSortBy){
|
1210
|
+
countsSortBy = 0;
|
1211
|
+
}
|
1212
|
+
|
1213
|
+
countsSortBy++;
|
1214
|
+
|
1215
|
+
if(window.defColToSort){
|
1216
|
+
defColToSortIndex = countsSortBy;
|
1217
|
+
defColToSort = null;
|
1218
|
+
}
|
1219
|
+
|
1220
|
+
if((window.numCol || window.numCol == 0) && ( !window.show_sort || window.show_sort == "yes") ){
|
1221
|
+
if(!window.kindSortArr) {
|
1222
|
+
kindSortArr = new Array();
|
1223
|
+
}
|
1224
|
+
kindSortArr[numCol] = kindSort;
|
1225
|
+
if(!window.indexTableParam) {
|
1226
|
+
indexTableParam = "";
|
1227
|
+
}
|
1228
|
+
if(!window.orgParam) {
|
1229
|
+
orgParam = "ORIGINAL";
|
1230
|
+
}
|
1231
|
+
orgParam = "";
|
1232
|
+
var lang = window.language;
|
1233
|
+
var smallToBigSelected = 'sortBy(\' DOWN ' + orgParam + ' \' , ' + numCol + ',this ,' + kindSort + indexTableParam + ');';
|
1234
|
+
var bigToSmallSelected = 'sortBy(\' UP ' + orgParam + ' \' , ' + numCol + ',this ,' + kindSort + indexTableParam + ');';
|
1235
|
+
writ('<SPAN '
|
1236
|
+
+ ' class="SORT_FOR_TITLE" id='
|
1237
|
+
+ '"' + getSortSpanId () +'" '
|
1238
|
+
+ 'onclick="handleGifSorted(this)" bigToSmallSelected="' + bigToSmallSelected + '" smallToBigSelected="' + smallToBigSelected + '">');
|
1239
|
+
var src = 'sort_down_gray';
|
1240
|
+
if(window.defCol) {
|
1241
|
+
src = 'sort_up_red';
|
1242
|
+
} else if(window.defColToSmall) {
|
1243
|
+
src = 'sort_down_red';
|
1244
|
+
}
|
1245
|
+
writ('<img src=/new_images/HE/' + src + '.gif border="0" width="10" height="5" numCol="' + numCol + '" id="SORT"></img>');
|
1246
|
+
} else {
|
1247
|
+
writ('<SPAN>')
|
1248
|
+
}
|
1249
|
+
|
1250
|
+
defCol = null;
|
1251
|
+
defColToSmall = null;
|
1252
|
+
orgParam = null;
|
1253
|
+
|
1254
|
+
if(!window.dontClearNumCol){
|
1255
|
+
numCol = null;
|
1256
|
+
}
|
1257
|
+
|
1258
|
+
function getSortSpanId () {
|
1259
|
+
return navigator.userAgent.toLowerCase().indexOf ("safari" ) >-1 ? "_SORT_SPAN" : "SORT_SPAN";
|
1260
|
+
}
|
1261
|
+
</script><span class="SORT_FOR_TITLE" id="_SORT_SPAN" onclick="handleGifSorted(this)" bigtosmallselected="sortBy(' UP ' , 5,this ,'number');" smalltobigselected="sortBy(' DOWN ' , 5,this ,'number');"><img src="/new_images/HE/sort_down_gray.gif" border="0" width="10" height="5" numcol="5" id="SORT">
|
1262
|
+
<text> Credit</text> </span> <algoritem></algoritem>
|
1263
|
+
|
1264
|
+
|
1265
|
+
</sort_by></td><td>Balance</td></tr><tr><td class="BLUE_LINE" colspan="7"></td></tr><tr class="TR_ROW_BANKTABLE" id="TR_ROW_BANKTABLE" align="left" bgcolor="#EDF1F4" style="background-color: rgb(237, 241, 244); ">
|
1266
|
+
<td>13/04</td><td nowrap="yes"><script> writ(getOpener().top.getImageLink("", "", "00005222", "", 'DIRECT- CUM.')); </script>DIRECT- CUM.</td><td>00005222</td><td>13/04</td><td>81.90</td><td> </td><td>42,767.92</td></tr>
|
1267
|
+
<tr class="TR_ROW_BANKTABLE" id="TR_ROW_BANKTABLE" align="left" bgcolor="#EDF1F4" style="background-color: rgb(237, 241, 244); ">
|
1268
|
+
<td>17/04</td><td nowrap="yes"><script> writ(getOpener().top.getImageLink("", "", "00005222", "", 'DIRECT')); </script>DIRECT</td><td>00005222</td><td>18/04</td><td>110.90</td><td> </td><td>43,153.06</td></tr>
|
1269
|
+
<tr><td class="BLUE_LINE" colspan="7"></td></tr></tbody></table><sort_by><script>var num_cel_needed = 7, posDate = 0;</script>
|
1270
|
+
|
1271
|
+
<script language="javascript">
|
1272
|
+
if(!window.countsSortBy){
|
1273
|
+
countsSortBy = 0;
|
1274
|
+
}
|
1275
|
+
|
1276
|
+
countsSortBy++;
|
1277
|
+
|
1278
|
+
if(window.defColToSort){
|
1279
|
+
defColToSortIndex = countsSortBy;
|
1280
|
+
defColToSort = null;
|
1281
|
+
}
|
1282
|
+
|
1283
|
+
if((window.numCol || window.numCol == 0) && ( !window.show_sort || window.show_sort == "yes") ){
|
1284
|
+
if(!window.kindSortArr) {
|
1285
|
+
kindSortArr = new Array();
|
1286
|
+
}
|
1287
|
+
kindSortArr[numCol] = kindSort;
|
1288
|
+
if(!window.indexTableParam) {
|
1289
|
+
indexTableParam = "";
|
1290
|
+
}
|
1291
|
+
if(!window.orgParam) {
|
1292
|
+
orgParam = "ORIGINAL";
|
1293
|
+
}
|
1294
|
+
orgParam = "";
|
1295
|
+
var lang = window.language;
|
1296
|
+
var smallToBigSelected = 'sortBy(\' DOWN ' + orgParam + ' \' , ' + numCol + ',this ,' + kindSort + indexTableParam + ');';
|
1297
|
+
var bigToSmallSelected = 'sortBy(\' UP ' + orgParam + ' \' , ' + numCol + ',this ,' + kindSort + indexTableParam + ');';
|
1298
|
+
writ('<SPAN '
|
1299
|
+
+ ' class="SORT_FOR_TITLE" id='
|
1300
|
+
+ '"' + getSortSpanId () +'" '
|
1301
|
+
+ 'onclick="handleGifSorted(this)" bigToSmallSelected="' + bigToSmallSelected + '" smallToBigSelected="' + smallToBigSelected + '">');
|
1302
|
+
var src = 'sort_down_gray';
|
1303
|
+
if(window.defCol) {
|
1304
|
+
src = 'sort_up_red';
|
1305
|
+
} else if(window.defColToSmall) {
|
1306
|
+
src = 'sort_down_red';
|
1307
|
+
}
|
1308
|
+
writ('<img src=/new_images/HE/' + src + '.gif border="0" width="10" height="5" numCol="' + numCol + '" id="SORT"></img>');
|
1309
|
+
} else {
|
1310
|
+
writ('<SPAN>')
|
1311
|
+
}
|
1312
|
+
|
1313
|
+
defCol = null;
|
1314
|
+
defColToSmall = null;
|
1315
|
+
orgParam = null;
|
1316
|
+
|
1317
|
+
if(!window.dontClearNumCol){
|
1318
|
+
numCol = null;
|
1319
|
+
}
|
1320
|
+
|
1321
|
+
function getSortSpanId () {
|
1322
|
+
return navigator.userAgent.toLowerCase().indexOf ("safari" ) >-1 ? "_SORT_SPAN" : "SORT_SPAN";
|
1323
|
+
}
|
1324
|
+
</script><span>
|
1325
|
+
<text></text> </span> <algoritem takepartfromcash="SORT_BY"><script src="/new_images/SCRIPTS/SORT_BY.js?M=M20140406" language="javaScript"></script></algoritem>
|
1326
|
+
|
1327
|
+
|
1328
|
+
</sort_by></td></tr><tr id="TrControlOnLine" align="left"><td>
|
1329
|
+
</td></tr></tbody></table><table border="0" width="100%" class="arial12" cellpadding="0" cellspacing="0"><tbody><tr align="left"><td><font color="red">*</font> The following transactions and balances are conditional and in estimated amounts, with the<br> exception of transactions</td></tr></tbody></table>
|
1330
|
+
</div><div id="bottomDataForPrint">
|
1331
|
+
<line></line><table border="0" class="arial12NoBold" cellpadding="0" cellspacing="0"><tbody><tr id="trBlueOnWhite12B">
|
1332
|
+
<td> </td><td nowrap="y" colspan="2" align="left">
|
1333
|
+
<font class="arial12BoldBlue"><giluy_naot_en takepartfromcash="Last60TransactionsInEng"><a href="javascript:openW();"><misgeret_header takepartfromcash="Last60TransactionsInEng"><font class="BOLD">There are several credit limits in the account.</font>
|
1334
|
+
</misgeret_header></a><script>
|
1335
|
+
var header=' ';var nominalit=' ';var metoemet=' ';
|
1336
|
+
if(!window.toWrite)
|
1337
|
+
{
|
1338
|
+
toWrite = "";
|
1339
|
+
}
|
1340
|
+
toWrite +=
|
1341
|
+
"\n <TR><TD align=center>" +
|
1342
|
+
"<B>" + header + "</B>" + '\n';
|
1343
|
+
if( header.indexOf("יתרות החובה בחשבון נכון ל") == -1 )
|
1344
|
+
{
|
1345
|
+
toWrite +=
|
1346
|
+
"" + " נומינלית :" + nominalit + '\n' +
|
1347
|
+
"" + " מתואמת :" + metoemet + '\n' ;
|
1348
|
+
}
|
1349
|
+
toWrite += "</TD></TR>";
|
1350
|
+
</script>
|
1351
|
+
<script>
|
1352
|
+
function openW()
|
1353
|
+
{
|
1354
|
+
h = window.open('','','');
|
1355
|
+
h.document.write("<FONT face='Arial(Hebrew)'><TABLE style='font-family: Arial(Hebrew);' align=center>" + toWrite + "<TR> <TD> <INPUT type=button align=center value=' סגור ' onClick='window.close();'></INPUT> </TD> </TR></TABLE> </FONT>");
|
1356
|
+
h.document.close( );
|
1357
|
+
}
|
1358
|
+
</script>
|
1359
|
+
</giluy_naot_en></font> : <font class="arial12NoBoldBlue">0.00</font> ILS</td><td align="left"> </td>
|
1360
|
+
|
1361
|
+
</tr></tbody></table>
|
1362
|
+
|
1363
|
+
</div><script language="JavaScript">
|
1364
|
+
dont_uptate_sometitle = "yes";
|
1365
|
+
var language = 'EN';
|
1366
|
+
var sugUser = 'prati';
|
1367
|
+
var alignSort = "left";
|
1368
|
+
|
1369
|
+
/*function checkDates() {
|
1370
|
+
if(language == "EN"){
|
1371
|
+
msgDatesNoGood= "Wrong Date"
|
1372
|
+
}
|
1373
|
+
else
|
1374
|
+
{
|
1375
|
+
msgDatesNoGood= "'ךיראת דעמ' םדקומ תויהל בייח 'ךיראתמ'"
|
1376
|
+
}
|
1377
|
+
nfromMonth=parseInt(document.iform.fromMonth.options[document.iform.fromMonth.selectedIndex].value)
|
1378
|
+
nfromYear=parseInt(document.iform.fromYear.options[document.iform.fromYear.selectedIndex].value)
|
1379
|
+
nfromDay =parseInt(document.iform.fromDay.options [document.iform.fromDay. selectedIndex].value)
|
1380
|
+
nfromMonth=parseInt(document.iform.fromMonth.options[document.iform.fromMonth.selectedIndex].value)
|
1381
|
+
ntoMonth= parseInt(document.iform.toMonth. options[document.iform. toMonth.selectedIndex].value)
|
1382
|
+
|
1383
|
+
ntoYear= parseInt(document.iform. toYear.options[document.iform.toYear.selectedIndex].value)
|
1384
|
+
ntoDay= parseInt(document.iform.toDay.options[document.iform.toDay.selectedIndex].value)
|
1385
|
+
if( nfromYear <ntoYear )
|
1386
|
+
return true
|
1387
|
+
if( nfromYear >ntoYear )
|
1388
|
+
return false
|
1389
|
+
if( nfromYear == ntoYear )
|
1390
|
+
{
|
1391
|
+
if( nfromMonth <ntoMonth )
|
1392
|
+
return true
|
1393
|
+
if( nfromMonth >ntoMonth )
|
1394
|
+
return false
|
1395
|
+
if( nfromMonth == ntoMonth )
|
1396
|
+
{
|
1397
|
+
if (nfromDay <= ntoDay)
|
1398
|
+
return true
|
1399
|
+
if (nfromDay >ntoDay)
|
1400
|
+
return false
|
1401
|
+
}
|
1402
|
+
}
|
1403
|
+
}*/
|
1404
|
+
|
1405
|
+
function CheckAndsubmit()
|
1406
|
+
{
|
1407
|
+
if(checkDates()==true)
|
1408
|
+
{
|
1409
|
+
return true;
|
1410
|
+
}
|
1411
|
+
else
|
1412
|
+
{
|
1413
|
+
top.valert(msgDatesNoGood)
|
1414
|
+
return false;
|
1415
|
+
}
|
1416
|
+
}
|
1417
|
+
|
1418
|
+
function goNext1()
|
1419
|
+
{
|
1420
|
+
document.iform.reset();
|
1421
|
+
document.iform.goNext.value='yes';
|
1422
|
+
document.iform.answerMe.value='no';
|
1423
|
+
document.iform.goNext.value='yes';
|
1424
|
+
pageAsInt= parseInt(document.iform.PageActive.value);
|
1425
|
+
document.iform.PageActive.value= "" + (pageAsInt+1);
|
1426
|
+
return true;
|
1427
|
+
}
|
1428
|
+
|
1429
|
+
function goBack1()
|
1430
|
+
{
|
1431
|
+
document.iform.reset();
|
1432
|
+
document.iform.answerMe.value='no';
|
1433
|
+
document.iform.goBack.value='yes';
|
1434
|
+
document.iform.goBack.value='yes';
|
1435
|
+
pageAsInt= parseInt(document.iform.PageActive.value);
|
1436
|
+
if( pageAsInt >1 )
|
1437
|
+
document.iform.PageActive.value= "" + (pageAsInt-1);
|
1438
|
+
document.iform.submit();
|
1439
|
+
}
|
1440
|
+
</script>
|
1441
|
+
</td>
|
1442
|
+
</tr>
|
1443
|
+
<tr><td colspan="3" align="left"><show_amlot takepartfromcash="BasicPage"><tr_befor_amlot takepartfromcash="BasicPage"></tr_befor_amlot><table border="0" width="100%" class="arial12NoBold" cellpadding="0" cellspacing="0">
|
1444
|
+
<tbody><tr align="left"><td colspan="3" align="left"><div id="Charges_layer_basic" style="display: none; "><amlottable takepartfromcash="BasicPage">
|
1445
|
+
<div class="amlotTableDiv">
|
1446
|
+
</div></amlottable></div></td></tr><script>
|
1447
|
+
if(indNetScape == -1 && document.all && document.all.Charges_layer_basic)
|
1448
|
+
{
|
1449
|
+
document.all.Charges_layer_basic.style.display = "none";
|
1450
|
+
}
|
1451
|
+
|
1452
|
+
if(navigator.appName == "Netscape")
|
1453
|
+
{
|
1454
|
+
document.getElementById("Charges_layer_basic").style.display = "none";
|
1455
|
+
}
|
1456
|
+
</script></tbody></table></show_amlot></td></tr>
|
1457
|
+
|
1458
|
+
</tbody></table>
|
1459
|
+
</td></tr><tr valign="top" id="MAINTABLE_FOOTER" align="left"><td><table border="0" width="100%" class="arial12NoBold" cellpadding="0" cellspacing="0">
|
1460
|
+
<tbody><tr><td colspan="2" align="left"><mas_msg takepartfromcash="BasicPage"></mas_msg></td></tr><tr>
|
1461
|
+
<td id="tdLinkInDefScreen" align="left"><script language="JavaScript">
|
1462
|
+
if(window.getLinkInDefScreen)
|
1463
|
+
{
|
1464
|
+
writ(getLinkInDefScreen());
|
1465
|
+
|
1466
|
+
if(top.sugUser=="exp")
|
1467
|
+
{
|
1468
|
+
if(document.getElementById("LinkEmpty") && document.getElementById("LinkEmpty").innerHTML=="")
|
1469
|
+
{
|
1470
|
+
document.getElementById("TrEmpty").style.display="none";
|
1471
|
+
}
|
1472
|
+
}
|
1473
|
+
}
|
1474
|
+
</script></td><td></td></tr></tbody></table>
|
1475
|
+
</td></tr></tbody></table><script language="JavaScript">
|
1476
|
+
if(!window.newPresentationPoalim && parent && parent.isFrameShukHoon){
|
1477
|
+
try{
|
1478
|
+
var obTopBar = getOpener().top.document.getElementById("BODY").contentWindow.frames.MIDDLE.document.getElementById("trTopBar");
|
1479
|
+
if(obTopBar){
|
1480
|
+
obTopBar.style.display = "none";
|
1481
|
+
document.all.mainTableTr1.style.display = "none";
|
1482
|
+
document.all.mainTableTr2.style.display = "none";
|
1483
|
+
}
|
1484
|
+
}
|
1485
|
+
catch(e){}
|
1486
|
+
}
|
1487
|
+
|
1488
|
+
if (indMSIE >-1 && document.iform.all){
|
1489
|
+
setButtonsSize(document.iform.all.buttonAction , true);
|
1490
|
+
setButtonsSize(document.iform.all.buttonInTrBgBlue, false);
|
1491
|
+
setButtonsSize(document.iform.all.buttonInTrBgGray, false);
|
1492
|
+
}
|
1493
|
+
if(window.setWidtMainTableh100){
|
1494
|
+
setMainTableWidth100();
|
1495
|
+
}
|
1496
|
+
|
1497
|
+
|
1498
|
+
</script></div></form><kampyle_gif takepartfromcash="BasicPage"></kampyle_gif></div><script type="text/javascript">
|
1499
|
+
top.walkme_ashraiBeRega = 'false' == 'true';
|
1500
|
+
top.walkme_halvaaRavArutsit = 'false' == 'true';
|
1501
|
+
</script><somescript takepartfromcash="BasicPage"></somescript>
|
1502
|
+
</body></html>
|