﻿				function sendMail() {					

					if ( $('name').getValue() == '' || $('name').getValue() == 'Ime i prezime' ) {
						$('name').setStyle('border:1px solid #f00');
						$('name').focus();
						return;
					}

					$('name').setStyle('border:1px solid #969696');

                    if ( $('tel').getValue() == '' ||  $('tel').getValue() == 'Kontakt telefon') {
						$('tel').setStyle('border:1px solid #f00');
						$('tel').focus();
						return;
					}

					$('tel').setStyle('border:1px solid #969696');

                    if ( $('text').getValue() == '' || $('text').getValue() == 'Tekst poruke' ) {
						$('text').setStyle('border:1px solid #f00');
						$('text').focus();
						return;
					}

					$('text').setStyle('border:1px solid #969696');

					new Ajax.Request('http://www.bluetooth-marketing.rs/mail/send.php',
					  {
					    method:'get',
					    parameters: {name: '' + $('name').getValue() + '', tel: '' + $('tel').getValue() + '',  text: '' + $('text').getValue() + ''},
					    onSuccess: function(transport){
					      var response = transport.responseText || "no response text";
					      if (eval(response)) {
                              $('name').setValue('');
                              $('tel').setValue('');
                              $('text').setValue('Hvala Vam što ste nas kontaktirali.Uskoro će Vas kontaktirati neko od našeg osoblja.');
                          } else {
                              $('text').setValue('Došlo je do greške prilikom slanja!');
                          }
					    },
					    onFailure: function(){ alert('Došlo je do greške prilikom slanja...') }
					  });


				}

                function clearField(id) {
                    $(id).setValue('');
                }

                function setField (id, value) {
                    if ($(id).getValue() == '')
                        $(id).setValue(value);
                }


