﻿// JScript File

var xmlHttp;
var xmlHttp2;
function initAjax(){
  try{xmlHttp=new XMLHttpRequest();} // Firefox, Opera 8.0+, Safari
  catch (e){
		try{xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");} // Internet Explorer
    catch (e){
			try{xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");}
      catch (e){alert("Din webbläsare stöder inte ajax.");return false;}
		}
	}
}

function initAjax2(){
  try{xmlHttp2=new XMLHttpRequest();} // Firefox, Opera 8.0+, Safari
  catch (e){
		try{xmlHttp2=new ActiveXObject("Msxml2.XMLHTTP");} // Internet Explorer
    catch (e){
			try{xmlHttp2=new ActiveXObject("Microsoft.XMLHTTP");}
      catch (e){alert("Din webbläsare stöder inte ajax.");return false;}
		}
	}
}

