﻿//------------------------------------------------------
// Final JS Functionalitu
//------------------------------------------------------
function js_Hide( _this ){
  _this.style.display = "none";
  var element = _this.getElementsByTagName("input")[0];
  if (element != null)
    element.style.display = "none";
}

function js_Show( _this ){
  _this.style.display = "block";
}

function js_Navigate( _this, _url) {
  if(_this.options[_this.selectedIndex].value != 'select'){
    if(_this.options[_this.selectedIndex].value == ''){
      window.location.href = _url;
    }
    else{
      if(_url == ''){
      window.location.href = _this.options[_this.selectedIndex].value;
      }
      else{
      window.location.href = _url + '-' + _this.options[_this.selectedIndex].value;
      }
    }
  }
}

