function Ajax(){

	var xmlHttp;
	
	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("No AJAX!!");
				return false;
		
			}
		
		}
	
	}
	return xmlHttp;

}




/*
 *	File : scripts/core.js
 *	Project : http://thrutherainbow.com.au
 */

