Removing duplicates
[mirrors/Kyberia-bloodline.git] / data / templates / own_templates / 1502254.tpl
diff --git a/data/templates/own_templates/1502254.tpl b/data/templates/own_templates/1502254.tpl
deleted file mode 100644 (file)
index 94265f0..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-function vymena() {
-    var browser = navigator.appName;
-    document.formular.mail_to.value = document.formular.mail_to.value.toLowerCase() ;
-    if(browser == "Microsoft Internet Explorer") {
-        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
-    }
-    else {
-        xmlhttp = new XMLHttpRequest();
-    }
-    get_id_url = '/ajax/get_id_by_name.php?name=';
-    get_id_url += document.formular.mail_to.value;
-    xmlhttp.open("GET", get_id_url);
-    xmlhttp.onreadystatechange = function() {
-        if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
-            id = xmlhttp.responseText;
-            document.images['fricon'].src = '/images/nodes/' + id.substr(0, 1) + '/' + id.substr(1, 1) + '/' + id + '.gif';
-        }
-    }
-    xmlhttp.send(null);
-}
-
-function chngto(name,id) {
-    document.formular.mail_to.value = name ;
-    name = name.toLowerCase() ;
-    document.images['fricon'].src = '/images/nodes/' + id.substr(0, 1) + '/' + id.substr(1, 1)+'/' + id + '.gif';
-}
\ No newline at end of file
This page took 0.103758 seconds and 4 git commands to generate.