
/****************************************************************
* file: 	ajaxwaw.js
* author:	toy
* date:		13dec09
* re:		waw ajax lib
*
* rev history
* [toy 13dec09]		orig version
*****************************************************************/
var spinner = "<img src='/images/spinnerwhite.gif' border='0'>";

function GetXmlHttpObject()
{
	var xmlHttp=null;
    try { xmlHttp = new ActiveXObject("Msxml2.XMLHTTP"); } 
    catch (e) { try { xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); } 
    catch (e) { try { xmlHttp = new XMLHttpRequest(); } 
    catch (e) { xmlHttp = false; }}} 	
	
	return xmlHttp;
}

