home *** CD-ROM | disk | FTP | other *** search
- // writen by Petr KleteΦka (kletecka@email.cz)
-
- function loadOld() {
-
- // definice prom∞nejch a vodka∩ sou
- PrecitajCookie
- var firma = PrecitajCookie("firma")
- var vobor = PrecitajCookie("vobor")
- var jmeno = PrecitajCookie("jmeno")
- var pozice = PrecitajCookie("pozice")
-
- var ulice = PrecitajCookie("ulice")
- var mesto = PrecitajCookie("mesto")
- var psc = PrecitajCookie("psc")
-
- var tel = PrecitajCookie("tel")
- var gsm = PrecitajCookie("gsm")
- var url = PrecitajCookie("url")
- var mail = PrecitajCookie("mail")
-
-
-
- if(firma == "null"){document.input.firma.value =" "}
- if(vobor == "null"){document.input.vobor.value =" "}
- if(jmeno == "null"){document.input.jmeno.value =" "}
- if(pozice == "null"){document.input.pozice.value =" "}
-
- if(ulice == "null"){document.input.ulice.value =" "}
- if(mesto == "null"){document.input.mesto.value =" "}
- if(psc == "null"){document.input.psc.value =" "}
-
- if(tel == "null"){document.input.tel.value =" "}
- if(gsm == "null"){document.input.gsm.value =" "}
- if(url == "null"){document.input.url.value =" "}
- if(mail == "null"){document.input.mail.value =" "}
-
- if(firma == "undefined"){document.input.firma.value =" "}
- if(vobor == "undefined"){document.input.vobor.value =" "}
- if(jmeno == "undefined"){document.input.jmeno.value =" "}
- if(pozice == "undefined"){document.input.pozice.value =" "}
-
- if(ulice == "undefined"){document.input.ulice.value =" "}
- if(mesto == "undefined"){document.input.mesto.value =" "}
- if(psc == "undefined"){document.input.psc.value =" "}
-
- if(tel == "undefined"){document.input.tel.value =" "}
- if(gsm == "undefined"){document.input.gsm.value =" "}
- if(url == "undefined"){document.input.url.value =" "}
- if(mail == "undefined"){document.input.mail.value =" "}
-
- document.input.firma.value = firma
- document.input.vobor.value = vobor
- document.input.jmeno.value = jmeno
- document.input.pozice.value = pozice
-
- document.input.ulice.value = ulice
- document.input.mesto.value = mesto
- document.input.psc.value = psc
-
- document.input.tel.value = tel
- document.input.gsm.value = gsm
- document.input.url.value = url
- document.input.mail.value = mail
-
- }
-