function TimeOut()
{
	var httpReq = false;
    if (typeof XMLHttpRequest!='undefined') 
		{
			httpReq = new XMLHttpRequest();
		}
	else 
		{
			try {
				httpReq = new ActiveXObject("Msxml2.XMLHTTP.4.0");
			} catch (e) {
			try {
				httpReq = new ActiveXObject("Msxml2.XMLHTTP");
			} catch (ee) {
			try {
				httpReq = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (eee) {
				httpReq = false;
			}}}
		}

	httpReq.open("get","timeOut.asp",false);
	httpReq.send(null);

}
