function GoOn(where)
{
 window.location.reload(where);
}

function kontrola()
{
      var text_heslo1= self.document.forms.f.password1.value;
      var text_heslo2= self.document.forms.f.password2.value;

     if  (text_heslo1 !=  text_heslo2){
      alert('Hesla se neshodují!');
      return false;
     }
     return true;

}

function SubscribeCheckForm()
{
      var text_heslo1= self.document.forms.f.email.value;
      var text_heslo2= self.document.forms.f.password.value;

     if  (text_heslo1 == ''){
      alert('Nebylo vyplněno: Email!');
      return false;
     }

     if  (text_heslo2 == ''){
      alert('Nebylo vyplněno: Heslo!');
      return false;
     }


     return true;

}

function PostKontrola()
{
      var text_heslo1= self.document.forms.f.text.value;

     if  (text_heslo1 == ''){
      alert('Nebylo vyplněno pole: Text!');
      return false;
     }

     return true;

}


var BgColorPrev;
var ColorPrev;
function selOn(ctrl)
{
  BgColorPrev = ctrl.style.backgroundColor;
  ColorPrev = ctrl.style.Color;
  ctrl.style.Color = '#F26C4F';
  ctrl.style.backgroundColor = '#B5BED6';
  ctrl.style.cursor = 'hand';
}

function selOff(ctrl)
{
  ctrl.style.backgroundColor = BgColorPrev;
  ctrl.style.Color = ColorPrev;
}

function selDown(ctrl)
{
  ctrl.style.backgroundColor = '#8492B5';
}

function selUp(ctrl)
{
    ctrl.style.backgroundColor = '#B5BED6';
}


