home *** CD-ROM | disk | FTP | other *** search
- // writen by Petr KleteΦka (kletecka@email.cz)
-
- function ulozData() {
-
- // definice prom∞nejch a vodka∩ sou
-
- var firma = document.input.firma.value
- var vobor = document.input.vobor.value
- var jmeno = document.input.jmeno.value
- var pozice = document.input.pozice.value
-
- var ulice = document.input.ulice.value
- var mesto = document.input.mesto.value
- var psc = document.input.psc.value
-
- var tel = document.input.tel.value
- var gsm = document.input.gsm.value
- var url = document.input.url.value
- var mail = document.input.mail.value
-
- // msie patch
-
- if(firma == ""){firma=" "}
- if(vobor == ""){vobor=" "}
- if(jmeno == ""){jmeno=" "}
- if(pozice == ""){pozice=" "}
-
- if(ulice == ""){ulice=" "}
- if(mesto == ""){mesto=" "}
- if(psc == ""){psc=" "}
-
- if(tel == ""){tel=" "}
- if(gsm == ""){gsm=" "}
- if(url == ""){url=" "}
- if(mail == ""){mail=" "}
-
- if(firma == "null"){firma=" "}
- if(vobor == "null"){vobor=" "}
- if(jmeno == "null"){jmeno=" "}
- if(pozice == "null"){pozice=" "}
-
- if(ulice == "null"){ulice=" "}
- if(mesto == "null"){mesto=" "}
- if(psc == "null"){psc=" "}
-
- if(tel == "null"){tel=" "}
- if(gsm == "null"){gsm=" "}
- if(url == "null"){url=" "}
- if(mail == "null"){mail=" "}
-
- if(firma == "undefined"){firma=" "}
- if(vobor == "undefined"){vobor=" "}
- if(jmeno == "undefined"){jmeno=" "}
- if(pozice == "undefined"){pozice=" "}
-
- if(ulice == "undefined"){ulice=" "}
- if(mesto == "undefined"){mesto=" "}
- if(psc == "undefined"){psc=" "}
-
- if(tel == "undefined"){tel=" "}
- if(gsm == "undefined"){gsm=" "}
- if(url == "undefined"){url=" "}
- if(mail == "undefined"){mail=" "}
-
-
- // zßpis dat pro pozd∞j╣φ pou╛itφ
- ZapisCookie("firma",firma,10)
- ZapisCookie("vobor",vobor,10)
- ZapisCookie("jmeno",jmeno,10)
- ZapisCookie("pozice",pozice,10)
-
- ZapisCookie("ulice",ulice,10)
- ZapisCookie("mesto",mesto,10)
- ZapisCookie("psc",psc,10)
-
- ZapisCookie("tel",tel,10)
- ZapisCookie("gsm",gsm,10)
- ZapisCookie("url",url,10)
- ZapisCookie("mail",mail,10)
-
- }
-