function _(title) {
  return document.getElementById(title);
}

function cm (mail) { 
  if (emailCheck(_('sub_email').value) == true) {
    _('wrong_email').style.display = 'none';
    return true;
  } else {
    _('wrong_email').style.display = '';
    return false;
  }
}

function IsNumeric(sText)

{
   var ValidChars = "0123456789";
   var IsNumber=true;
   var Char;

   for (i = 0; i < sText.length && IsNumber == true; i++) 
      { 
      Char = sText.charAt(i); 
      if (ValidChars.indexOf(Char) == -1) 
         {
         IsNumber = false;
         }
      }
   return IsNumber;
 }


function checkFaqData() {
  _('error').innerHTML = ''; 
  var result = true;
  
  if( (_('fname').value == '') || (_('fname').value.lenght < 3) ) { 
    _('fname').className = 'tf1 klaida';
    _('error').style.display = '';  
    _('tname').className = 'color8';  
    result = false;
  } else {
    _('tname').className = '';  
    _('fname').className = 'tf1';
  }
  
  if( (_('fage').value == '') || (!IsNumeric(_('fage').value)) || (_('fage').value < 8) || (_('fage').value > 100) ) { 
    _('fage').className = 'tf1 klaida';
    _('error').style.display = '';  
    _('tage').className = 'color8';  
    result = false;
  } else {
    _('tage').className = '';  
    _('fage').className = 'tf1';
  }
  
  if (emailCheck(_('email').value) == false) {
    _('email').className = 'tf1 klaida';
    _('error').style.display = '';
    _('tmail').className = 'color8'; 
    result = false;
  } else {
    _('tmail').className = '';  
    _('email').className = 'tf1';
  }
  
  if(_('question').value == '') {
    _('question').className = 'ta1 klaida';
    _('error').style.display = '';  
    _('tquestion').className = 'color8'; 
    result = false;
  } else {
    _('tquestion').className = '';
    _('question').className = 'ta1';
  }
  
  if (result === false) {
     _('error').innerHTML = 'Klaida. Neteisingai įvesti arba neįvesti duomenys.';
  }
  
  return result;
}

function checkFaqData2() {
  _('error').innerHTML = 'Klaida. Neteisingai įvesti arba neįvesti duomenys.';
  var result = true;
  
  if( (_('fname').value == '') || (_('fname').value.lenght < 3) ) { 
    _('fname').className = 'error kstf1';
    _('error').style.display = '';  
    result = false;
  } else {
    _('fname').className = 'kstf1';
  }
  
  if (emailCheck(_('email').value) == false) {
    _('email').className = 'error kstf1';
    _('error').style.display = '';
    result = false;
  } else {
    _('email').className = 'kstf1';
  }
  
  if(_('question').value == '') {
    _('question').className = 'error klta1';
    _('error').style.display = '';  
    result = false;
  } else {
    _('question').className = 'klta1';
  }
  
  return result;
}

function checkRecommendationData() {
  var result = true;
  if( (_('adv_cname').value == '') || (_('adv_cname').value.lenght < 3) ) { 
    _('adv_cname').className = 'error tf1';
    _('adv_error').style.display = ''; 
    _('adv_name_row').className = 'color8'; 
    result = false;
  } else {
    _('adv_name_row').className = '';
    _('adv_cname').className = 'tf1';
  }
  

  if (emailCheck(_('adv_email').value) == false) {
    _('adv_email').className = 'error tf1';
    _('adv_error').style.display = '';
    _('adv_email_row').className = 'color8'; 
    result = false;
  } else {
    _('adv_email_row').className = ''; 
    _('adv_email').className = 'tf1';
  }
  
  if (emailCheck(_('sender_cemail').value) == false) {
    _('sender_cemail').className = 'error tf1';
    _('adv_error').style.display = '';
    _('sender_email_row').className = 'color8'; 
    result = false;
  } else {
    _('sender_email_row').className = ''; 
    _('sender_cemail').className = 'tf1';
  }
  
  if(_('adv_comment').value == '') {
    _('adv_comment').className = 'error ta1';
    _('adv_error').style.display = '';  
    _('adv_comment_row').className = 'color8'; 
    result = false;
  } else {
    _('adv_comment_row').className = ''; 
    _('adv_comment').className = 'ta1';
  }
  
  return result;
}

function checkCommentData() {
  var result = true;
  if( (_('cname').value == '') || (_('cname').value.lenght < 3) ) { 
    _('cname').className = 'error tf1';
    _('error').style.display = ''; 
    _('name_row').className = 'color8'; 
    result = false;
  } else {
    _('name_row').className = '';
    _('cname').className = 'tf1';
  }
  
  if (_('email').value != '') {
    if (emailCheck(_('email').value) == false) {
      _('email').className = 'error tf1';
      _('error').style.display = '';
      _('email_row').className = 'color8'; 
      result = false;
    } else {
      _('email_row').className = ''; 
      _('email').className = 'tf1';
    }
  } else {
    _('email_row').className = ''; 
    _('email').className = 'tf1';
  }
  
  if(_('comment').value == '') {
    _('comment').className = 'error ta1';
    _('error').style.display = '';  
    _('comment_row').className = 'color8'; 
    result = false;
  } else {
    _('comment_row').className = ''; 
    _('comment').className = 'ta1';
  }
  
  return result;
}

function checkAnswers() {
  var count  = _('questions_count').value; 
  var count2 = _('questions2_count').value; 
  var result = true;   
     
  /*
  prize = 0;
  prizes = document.forms['competition_form'].prize;

  for (var x=0; x<prizes.length; x++) {
    if(prizes[x].checked == true) {
      prize = prizes[x].value;
    }
  }
  */
       
  if ( (!_('sutinku').checked) ) {
     _('error').innerHTML = 'Klaida. Privalote sutikti su konkurso sąlygomis.';
    _('error').style.display = '';
    result = false;
  }
  
  if (_('document') != null) {
    if (_('document').value == '') {
      _('error').innerHTML = 'Klaida. Privalote prisegti dokumentą.';
      _('error').style.display = '';
      result = false;
    }
  } else {
  }
  
  
  for (i=0; i<count; i++) {
    field_title = 'answer_' + (i + 1);
    
    if (_(field_title).value == '') {
      _(field_title).className = 'klaida2 ta3';
      _('error').style.display = '';
      _('error').innerHTML = 'Klaida. Atsakėte ne į visus klausimus.'; 
      result = false;
    } else {
      _(field_title).className = 'ta3';
    }
  }
  
  form = document.forms['competition_form'];
  for (i=0; i<count2; i++) {
    radio_name = 'pq_answers_' + (i+1);
    
    answers = form[radio_name];
    
    if (answers != null) {
      ans = 0;
      for (var x=0; x<answers.length; x++) {
        if(answers[x].checked == true) {
          ans = answers[x].value;
        }
      }
      
      if (ans == 0) {
        _('error').innerHTML = 'Klaida. Pasirinkote atsakymus ne į visus klausimus.';
        result = false;
      }
    }
  }
  
  
  if ( (_('name_surname').value == '') || (_('name_surname').value.length < 8) ) {
    _('name_surname').className = 'tf2 klaida2';
    _('tc_name_surname').className='color13';
    _('error').style.display = '';
    _('error').innerHTML = 'Klaida. Neteisingai įvesti arba neįvesti duomenys.'; 
    result = false;
  } else {
    _('name_surname').className = 'tf2';
    _('tc_name_surname').className='';
  }
  
  if ( (_('c_city').value == '') || (_('c_city').value.length < 3) ) {
    _('c_city').className = 'tf2 klaida2';
    _('tc_city').className='color13'; 
    _('error').style.display = '';
    _('error').innerHTML = 'Klaida. Neteisingai įvesti arba neįvesti duomenys.'; 
    result = false;
  } else {
    _('c_city').className = 'tf2';
    _('tc_city').className=''; 
  }
  
  if ( (_('c_address').value == '') || (_('c_address').value.length < 3) ) {
    _('c_address').className = 'tf2 klaida2';
    _('tc_address').className='color13'; 
    _('error').style.display = '';
    _('error').innerHTML = 'Klaida. Neteisingai įvesti arba neįvesti duomenys.'; 
    result = false;
  } else {
    _('c_address').className = 'tf2';
    _('tc_address').className=''; 
  }
  
  if( (_('c_age').value == '') || (!IsNumeric(_('c_age').value)) || (_('c_age').value < 8) || (_('c_age').value > 100) ) { 
    _('c_age').className = 'tf2 klaida2';
    _('error').style.display = '';  
    _('tc_age').className = 'color13';  
    result = false;
  } else {
    _('tc_age').className = '';  
    _('c_age').className = 'tf2';
  }
  
  if ( (_('phone_number').value == '') || (_('phone_number').value.length < 5) ) {
    _('phone_number').className = 'klaida2 tf2';
    _('tc_phone_number').className='color13'; 
    _('error').style.display = '';
    _('error').innerHTML = 'Klaida. Neteisingai įvesti arba neįvesti duomenys.'; 
    result = false;
  } else {
    _('phone_number').className = 'tf2';
    _('tc_phone_number').className=''; 
  }
  
  if (emailCheck(_('e_mail').value) == false) {
    _('e_mail').className = 'klaida2 tf2';
    _('tc_email').className ='color13';
    _('error').style.display = '';
    _('error').innerHTML = 'Klaida. Neteisingai įvesti arba neįvesti duomenys.'; 
    result = false;
  } else {
    _('e_mail').className = 'tf2';
    _('tc_email').className ='';   
  }

  return result;
}

function emailCheck (emailStr) {
/* The following pattern is used to check if the entered e-mail address
   fits the user@domain format.  It also is used to separate the username
   from the domain. */
var emailPat=/^(.+)@(.+)$/
/* The following string represents the pattern for matching all special
   characters.  We don't want to allow special characters in the address. 
   These characters include ( ) < > @ , ; : \ " . [ ]    */
var specialChars="\\(\\)<>@,;:\\\\\\\"\\.\\[\\]"
/* The following string represents the range of characters allowed in a 
   username or domainname.  It really states which chars aren't allowed. */
var validChars="\[^\\s" + specialChars + "\]"
/* The following pattern applies if the "user" is a quoted string (in
   which case, there are no rules about which characters are allowed
   and which aren't; anything goes).  E.g. "jiminy cricket"@disney.com
   is a legal e-mail address. */
var quotedUser="(\"[^\"]*\")"
/* The following pattern applies for domains that are IP addresses,
   rather than symbolic names.  E.g. joe@[123.124.233.4] is a legal
   e-mail address. NOTE: The square brackets are required. */
var ipDomainPat=/^\[(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\]$/
/* The following string represents an atom (basically a series of
   non-special characters.) */
var atom=validChars + '+'
/* The following string represents one word in the typical username.
   For example, in john.doe@somewhere.com, john and doe are words.
   Basically, a word is either an atom or quoted string. */
var word="(" + atom + "|" + quotedUser + ")"
// The following pattern describes the structure of the user
var userPat=new RegExp("^" + word + "(\\." + word + ")*$")
/* The following pattern describes the structure of a normal symbolic
   domain, as opposed to ipDomainPat, shown above. */
var domainPat=new RegExp("^" + atom + "(\\." + atom +")*$")


/* Finally, let's start trying to figure out if the supplied address is
   valid. */

/* Begin with the coarse pattern to simply break up user@domain into
   different pieces that are easy to analyze. */
var matchArray=emailStr.match(emailPat)
if (matchArray==null) {
  /* Too many/few @'s or something; basically, this address doesn't
     even fit the general mould of a valid e-mail address. */
  //alert("Email address seems incorrect (check @ and .'s)")
  return false
}
var user=matchArray[1]
var domain=matchArray[2]

// See if "user" is valid 
if (user.match(userPat)==null) {
    // user is not valid
    //alert("The username doesn't seem to be valid.")
    return false
}

/* if the e-mail address is at an IP address (as opposed to a symbolic
   host name) make sure the IP address is valid. */
var IPArray=domain.match(ipDomainPat)
if (IPArray!=null) {
    // this is an IP address
    for (var i=1;i<=4;i++) {
      if (IPArray[i]>255) {
          //alert("Destination IP address is invalid!")
    return false
      }
    }
    return true
}

// Domain is symbolic name
var domainArray=domain.match(domainPat)
if (domainArray==null) {
  //alert("The domain name doesn't seem to be valid.")
    return false;
}

/* domain name seems valid, but now make sure that it ends in a
   three-letter word (like com, edu, gov) or a two-letter word,
   representing country (uk, nl), and that there's a hostname preceding 
   the domain or country. */

/* Now we need to break up the domain to get a count of how many atoms
   it consists of. */
var atomPat=new RegExp(atom,"g")
var domArr=domain.match(atomPat)
var len=domArr.length
if (domArr[domArr.length-1].length<2 || 
    domArr[domArr.length-1].length>3) {
   // the address must end in a two letter or three letter word.
   //alert("The address must end in a three-letter domain, or two letter country.")
   return false;
}

if (len<2) {
   //var errStr="This address is missing a hostname!"
   return false;
}
return true;
}

function setHome() {
  if (document.all) {
    document.body.style.behavior='url(#default#homepage)';
    document.body.setHomePage('http://www.moteris.lt/');
  } else if (window.sidebar) {
    if(window.netscape) {
      try {
        netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
      } catch(e) {
        alert("Jūsų naršyklės nustatymai neleidžia atlikti šio veiksmo. Norint pakeisti nustatymus, adreso eilutėje įrašykite \"about:config\" ir pakeiskite reikšmę \"signed.applets.codebase_principal_support\" į \"true\"");
      }
    }         
    var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components. interfaces.nsIPrefBranch); 
    prefs.setCharPref('browser.startup.homepage', 'http://www.moteris.lt/');
  }
}