home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / internet / Cybex / scripts / pokladna.js < prev    next >
Text File  |  1999-09-17  |  2KB  |  66 lines

  1. function chkOrder(thisform) 
  2. {
  3.   if (isWhitespace(thisform.jmeno.value))
  4.     {
  5.     alert ("\nZadejte prosφm svΘ jmΘno a p°φjmenφ.")
  6.     thisform.jmeno.focus()
  7.     return false
  8.     }
  9.   if (isWhitespace(thisform.ulice.value))
  10.     {
  11.     alert ("\nZadejte prosφm ulici.")
  12.     thisform.ulice.focus()
  13.     return false
  14.     }
  15.   if (isWhitespace(thisform.mesto.value))
  16.     {
  17.     alert ("\nZadejte prosφm m∞sto.")
  18.     thisform.mesto.focus()
  19.     return false
  20.     }
  21.   if (isWhitespace(thisform.psc.value))
  22.     {
  23.     alert ("\nZadejte prosφm PS╚.")
  24.     thisform.psc.focus()
  25.     return false
  26.     }
  27.   if (!isPSC(thisform.psc.value))
  28.     {
  29.     alert ("\nPozor! PS╚ je zadßno Üpatn∞.")
  30.     thisform.psc.focus()
  31.     return false
  32.     }
  33.   if (!isWhitespace(thisform.firma.value) && isWhitespace(thisform.ico.value))
  34.     {
  35.     alert ("\nK firm∞ zadejte prosφm I╚O.")
  36.     thisform.ico.focus()
  37.     return false
  38.     }
  39.   if (isWhitespace(thisform.email.value) && isWhitespace(thisform.telefon.value))
  40.     {
  41.     alert ("\nZadejte prosφm e-mailovou adresu.") ;
  42.     thisform.email.focus() ;
  43.     return false ;
  44.     }
  45.   if (!isEmail(thisform.email.value))
  46.     {
  47.     alert ("\nE-mail adresa nenφ zadßna sprßvn∞.") ;
  48.     thisform.email.focus() ;
  49.     return false ;
  50.     }
  51.   if (!isWhitespace(thisform.psc2.value))
  52.     { if (!isPSC(thisform.psc2.value))
  53.         {
  54.         alert ("\nPozor! PS╚ je zadßno Üpatn∞.")
  55.         thisform.psc2.focus()
  56.         return false
  57.         }
  58.     }    
  59.   if (!(thisform.Platba[0].checked) && !(thisform.Platba[1].checked) && !(thisform.Platba[2].checked) && !(thisform.Platba[3].checked))
  60.        {
  61.     alert ("\nVyberte prosφm zp∙sob platby.")
  62.     return false
  63.     }
  64.   return true
  65. }
  66.