    function control(){
      //Store the password field objects into variables ...
      var newPassword = document.getElementById('newPassword');
      var newPasswordAgain = document.getElementById('newPasswordAgain');
         //Store the Confimation Message Object ...
      var message = document.getElementById('confirmMessage');
      
   
      //Set the colors we will be using ...
      var goodColor = "#66cc66";
      var badColor = "#ff6666";
      //Compare the values in the password field 
      //and the confirmation field
      if(newPassword.value == newPasswordAgain.value){
        //The passwords match. 
        //Set the color to the good color and inform
        //the user that they have entered the correct password 
        newPasswordAgain.style.backgroundColor = goodColor;
        message.style.color = goodColor;
        message.innerHTML = "Parolalar ayni, devam edebilirsiniz!"
      }else{
        //The passwords do not match.
        //Set the color to the bad color and
        //notify the user.
        newPasswordAgain.style.backgroundColor = badColor;
        message.style.color = badColor;
        message.innerHTML = "Parolalar farkli lutfen takrar girin!"
      }
        var i = newPassword.indexOf("ş");
      if(i>0)
       message.innerHTML = "Türkçe karakter kullandınız.Lütfen değiştirin!"
       
    } 
    
   
