function Simile(){
  //alert('сервис в тестовом режиме');
  inList = document.getElementsByTagName("INPUT");
  _Arr = new Array();
  p = 0;
  for (i = 0; i<inList.length; i++){
    if(inList[i].checked){
      _Arr[p] = inList[i].value;
      p++;
    }
  }
  
  if (_Arr.length > 0){
    sPath = 'http://' + location.host + '/simile.php?s=';
    for (i = 0; i < _Arr.length; i++){
      sPath += _Arr[i] + '_';
    }
    location.href = sPath;
    //window.open(sPath, '', 'height=800px, width=' + (screen.width - 5) + 'px, scrollbars=yes, left,top=20px;');
  }
  else{
    alert('Не выбраны станки для сравнения');
  }
}