* W polu tekstowym, do kt�rego chcemy wstawi� dat� wpisujemy: onclick="showKal(this)"
*
* W kalendarzu mo�na zmieni� kolory, rok pocz�tkowy, rok ko�cowy, format
* wstawianej daty i dzie� tygodnia od jakiego ma si� zaczyna� kalendarz.
*
* Zmiany:
* 20.05.2008 - mo�liwo�� definiowania pierwszego dnia tygodnia w kalendarzu
* 22.07.2008 - poszerzona mo�liwo�� zmiany wygl�du kalendarza
* 29.07.2008 - poprawka dla IE pozwalaj�ca na pokazanie kalendarza nad polami
* typu select (dzi�ki Roman za znalezienie b��du)
* 29.11.2008 - poprawka obliczania roku przest�pnego dodana przez Micha�a Walczaka
* 23.10.2009 - poprawienie b��du w formacie daty, dzi�ki FOXIK
*/
var ie4, ns4, ns6;
var frmpole;
ie = document.all && !window.opera;
ns4 = document.layers;
ns6 = document.getElementById && !document.all;
// Aktualne data w kalendarzu
var data = new Date();
var amies = data.getMonth();
var arok = data.getFullYear();
var adzien = data.getDate();
var adzientyg = data.getDay();
// ilo�� dni w roku
var dni = new Array(31,28,31,30,31,30,31,31,30,31,30,31);
// nazwy miesi�cy
var miesiac = new Array('Stycze�','Luty','Marzec','Kwiecie�', 'Maj','Czerwiec','Lipiec','Sierpie�','Wrzesie�','Pa�dziernik','Listopad','Grudzie�');
// dni tygodnia
var dniTygodnia = new Array('Nd','Pn','Wt','�r','Czw','Pt','So')
/************************* KONFIGURACJA *************************/
var pierwszyDzien = 0; // pierwszy dzie� tygodnia pokazywany w kalendarzu: 0 - niedziela, 1 - poniedzia�ek, 2 - wtorek, itd..
var latWstecz = 0; // ilo�� lat wstecz jakie pokazuje kalendarz, gdy ustawiony na 0 brany jest pod uwag� rok pocz�tkowy
var latWprzod = 0; // ilo�� lat wprz�d jakie pokazuje kalendarz, gdy ustawiony na 0 brany jest pod uwag� rok ko�cowy
var rokOd = 2006; // rok pocz�tkowy pokazywany w polu wyboru lat
var rokDo = 2012; // rok ko�cowy pokazywany w polu wyboru lat
var template0 = new Array(18)
template0[0] = '#3253c1'; // kolor czcionki w polu dnia - dzie� tygodnia
template0[1] = '#888888'; // kolor czcionki w polu dnia - sobota
template0[2] = '#ff0000'; // kolor czcionki w polu dnia - niedziela
template0[3] = '#eeeeee'; // kolor t�a kalendarza
template0[4] = '#ffffff'; // kolor t�a dni kalendarza
template0[5] = '#ffffff'; // kolor czcionki w polu dnia - aktualny dzie�
template0[6] = '#3253c1'; // kolor t�a aktualnego dnia
template0[7] = '#ffffff'; // kolor czcionki przycisku zamykaj�cego kalendarz
template0[8] = '#ff0000'; // kolor t�a przycisku zamykaj�cego kalendarz
template0[9] = '#dddddd'; // kolor ramki wok� kalendarza
template0[10] = '#333333'; // kolor czcionki w polu wyboru roku i miesi�ca
template0[11] = '#333333'; // kolor czcionki nazw dni tygodnia
template0[12] = '#eeeeee'; // kolor t�a nazw dni tygodnia
template0[13] = 1; // Grubo�� ramki w pikselach
template0[14] = 11; // Rozmiar czcionki
template0[15] = false; // Pogrubienie czcionki w polu dni (true/false)
template0[16] = '#ff0000'; // kolor ramki wok� pola aktualnego dnia
template0[17] = 'negative'; // Spos�b wy�wietlania aktualnego dnia (border/negative)
// Inne szablony kcd kcds kcdn ktk ktdk kcda ktda kcpz ktpz kr kcpw kcndt ktndt r c bold
var template1 = new Array('#3253c1','#888888','#ff0000','#eeeeee','#ffffff','#ffffff','#3253c1','#ffffff','#ff0000','#dddddd','#333333','#333333','#eeeeee',1,11,true,'#ff0000','border');
var template2 = new Array('#888888','#888888','#ff0000','#ffffff','#efefef','#ffffff','#888888','#ffffff','#888888','#888888','#888888','#ffffff','#888888',2,11,false,'#999999','negative');
// wyb�r szablonu kolor�w
var config = template0;
/************************* KONIEC KONFIGURACJI *************************/
// ilo�� dni w Lutym - przeliczane po zmianie miesi�ca lub roku
function dniMies() {
dni[1] = (((rok % 4 == 0) && (rok % 100 != 0)) || (rok % 400 == 0)) ? 29 : 28;
}
// pobieranie pozycji myszy
function mysz(e) {
var posx = 0;
var posy = 0;
if (!e) var e = window.event;
if (e.pageX || e.pageY) {
posx = e.pageX;
posy = e.pageY;
} else if (e.clientX || e.clientY) {
posx = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;
posy = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;
}
x = posx;
y = posy;
}
// funkcja pokazujaca kalendarz pod kursorem myszy
function kalendarz(fp) {
data = new Date(arok, amies, 1);
mies = data.getMonth();
rok = data.getFullYear();
dzien = data.getDate();
dzientyg = data.getDay();
dniMies();
frmpole = fp;
pozx = x;
pozy = y;
rysujKal();
if(ns6 || ie) {
document.getElementById('container').style.left = pozx+'px';
document.getElementById('container').style.top = (pozy+10)+'px';
document.getElementById('container').style.visibility = 'visible';
}
}
// funkcja ukrywajaca kalendarz i wstawiajaca wybran� dat� do pola formularza
function hideKal() {
if(ns6 || ie)
document.getElementById('container').style.visibility = 'hidden';
// uwzgl�dnienie zer poprzedzaj�cych w miesi�cu i dniu
mies++;
if(mies < 10)
mies = '0' + mies;
if(selectday < 10)
selectday = '0' + selectday;
/************************* FORMAT DATY *************************/
// Przyk�ady:
// format = selectday + ' ' + miesiac[parseInt(mies-1)] + ' ' + rok;
// format = rok + '-' + miesiac[parseInt(mies-1)] + '-' + selectday;
format = rok + '-' + mies + '-' + selectday;
/********************* KONIEC FORMATU DATY *********************/
frmpole.value = format;
}
// ukrywanie kalendarza bez wstawiania daty
function exitKal() {
if(ns6 || ie)
document.getElementById('container').style.visibility = 'hidden';
}
// ustawianie nowej daty po zmianie miesiaca lub roku
function setData() {
mies = document.forms['sdata'].elements['month'].value;
rok = document.forms['sdata'].elements['year'].value;
data = new Date(rok, mies, 1);
mies = data.getMonth();
rok = data.getFullYear();
dzien = data.getDate();
dzientyg = data.getDay();
dniMies();
rysujKal();
}
// rysowanie kalendarza
function rysujKal() {
kaltxt = '
';
document.getElementById("kalendarz").innerHTML = kaltxt;
}
// style kalendarza i warstwa, na kt�rej si� znajduje
document.write('
Ponad 90% przelewów wykonanych za pomocą Lilion Transfer jest realizowana w czasie poniżej dwóch godzin?
Anti-Money Laundering Policy
This policy applies to
All Employees in Lilion Transfer subsidiaries as well as partners providing service.
All Non-Executive Directors up to and including the Chairman.
Policy objectives
To ensure that Lilion Transfer comply with international and relevant domestic anti-money laundering (AML) and counter terrorist funding (CTF) practices in all jurisdictions in which it operates. This includes compliance with both the specific requirements and the spirit of all relevant laws and regulations.
To protect Lilion Transfer and its employees contracted staff and third party agents from inadvertently committing money laundering and terrorist financing offences or from failure in operational controls.
To avoid reputational damage to Lilion Transfer by having consistent controls in place that deter abuse of Lilion Transfer services by money launderers and those involved in financing terrorism.
The policy
It is the policy of the Board of Lilion Group to ensure that appropriate controls are in place to detect any form of money laundering relating to the proceeds of any crime and the financing of terrorism. All reference to anti-money laundering includes counter-terrorist funding.
The controls cover:
Detailed AML procedures maintained in each Lilion Transfer company, affiliate or partner operating a Lilion Transfer service subject to AML legislation;
Verifying the identity of customers, dealers and agents and obtaining additional know your customer (KYC) information as appropriate;
Monitoring of customer transactions for activity that may be linked to money laundering or financing of terrorism;
Procedures for the reporting of suspicious customer activity, both internally to the Money Laundering Reporting Officer (MLRO) and externally to relevant law enforcement bodies;
Maintaining appropriate records of customer identification and transactions;
Education and training of relevant employees.
It is the responsibility of each Local Company Chief Executive officer to set up appropriate processes and it is the obligation of all Lilion Transfer employees to familiarise with these controls.