var http;

function makeXmlRequest()
{ 	
  var ThisHttp = false;
  if (window.XMLHttpRequest) { // Mozilla, Safari,...
	 ThisHttp = new XMLHttpRequest();
	 if (ThisHttp.overrideMimeType) {
		// set type accordingly to anticipated content type
		//http.overrideMimeType('text/xml');
		ThisHttp.overrideMimeType('text/html');
	 }
  } else if (window.ActiveXObject) { // IE
	 try {
		ThisHttp = new ActiveXObject("Msxml2.XMLHTTP");
	 } catch (e) {
		try {
		   ThisHttp = new ActiveXObject("Microsoft.XMLHTTP");
		} catch (e) {}
	 }
  }
  if (!ThisHttp) {
	 alert('Cannot create XMLHTTP instance');
	 return false;
  }
  return ThisHttp;
}
http	=	makeXmlRequest();

	function showDiv(value,divid) 
	{	 
		if(value>=99)	  return 0;
		testObj	=	document.getElementById(divid);
		testObj.style.opacity = value/10;
		testObj.style.filter = 'alpha(opacity=' + value*10 + ')';
		setTimeout("showDiv("+(value+1)+",'"+divid+"')",50);
	}	

	function HideDiv(divid) 
	{	testObj	=	document.getElementById(divid);
		testObj.style.display	=	'none';
		
	}

