// JavaScript Document
function myRequestObj(){
	var myhttp=null;
	try {
		myhttp= new ActiveXObject("Msxml2.XMLHTTP");
		}
	catch (e){
		try {
			myhttp=new ActiveXObject("Microsoft.XMLHTTP");
			}
		catch (e2){
			myhttp=new XMLHttpRequest();
			}
		}
return myhttp;
}
