Kyberia v2.3 - 1st revision from SVN (Without patches of kyberia.sk team)
[mirrors/Kyberia-bloodline.git] / data / templates / own_templates / 1502254.tpl
1 function vymena() {
2 var browser = navigator.appName;
3 document.formular.mail_to.value = document.formular.mail_to.value.toLowerCase() ;
4 if(browser == "Microsoft Internet Explorer") {
5 xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
6 }
7 else {
8 xmlhttp = new XMLHttpRequest();
9 }
10 get_id_url = '/ajax/get_id_by_name.php?name=';
11 get_id_url += document.formular.mail_to.value;
12 xmlhttp.open("GET", get_id_url);
13 xmlhttp.onreadystatechange = function() {
14 if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
15 id = xmlhttp.responseText;
16 document.images['fricon'].src = '/images/nodes/' + id.substr(0, 1) + '/' + id.substr(1, 1) + '/' + id + '.gif';
17 }
18 }
19 xmlhttp.send(null);
20 }
21
22 function chngto(name,id) {
23 document.formular.mail_to.value = name ;
24 name = name.toLowerCase() ;
25 document.images['fricon'].src = '/images/nodes/' + id.substr(0, 1) + '/' + id.substr(1, 1)+'/' + id + '.gif';
26 }
This page took 0.345909 seconds and 4 git commands to generate.