function ResetAll() { 
  var xhr; 
  try { 
    xhr = new ActiveXObject('Msxml2.XMLHTTP'); 
  } catch (e) { 
    try { 
      xhr = new ActiveXObject('Microsoft.XMLHTTP'); 
    } catch (e) { 
      try { 
        xhr = new XMLHttpRequest(); 
      } catch (e) { 
        xhr = false; 
      } 
    } 
  } 
  // 
  // Make sure xhr is set 
  if (xhr) { 
    // 
    // Make the url called synchronously. Execution will be blocked 
    // until the call did not succeed, so when returning something, 
    // it will be returned to the caller of loadContent, not the caller 
    // of the event handler. 
	var url="product_selector_fi/reset_selector_sv.php";
	   
    url=url+"?sid="+Math.random();
    xhr.open("GET", url, false); 
    xhr.send(''); 
    if (xhr.status == 200) 
      document.getElementById('addional_steps').innerHTML = xhr.responseText;
	 else { 
      document.ajax.dyn="Error code " + xhr.status; 
      return ''; 
    } 
  } 
}
