var objRequest=false;

function createXMLHttp()
{
		
	if(window.XMLHttpRequest)
	{
		objRequest=new XMLHttpRequest();
		
		if(objRequest==null)
			objRequest=new ActiveXObject("Microsoft.XMLHTTP");
		if(objRequest==null)
			objRequest=new ActiveXObject("MSXML2.XMLHTTP");
		if(objRequest==null)
			objRequest=new ActiveXObject("MSXML2.XMLHTTP.3.0");
		if(objRequest==null)
			objRequest=new ActiveXObject("Msxml2.XMLHTTP.4.0");
		if(objRequest==null)
			objRequest=new ActiveXObject("Msxml2.XMLHTTP.5.0");
		if(objRequest==null)
			objRequest=new ActiveXObject("Msxml2.XMLHTTP.6.0");
		if(objRequest==null)
			objRequest=new ActiveXObject("Msxml2.XMLHTTP.7.0")
		//objRequest.overrideMimeType("text/xml");
		
	}
	else if(window.ActiveXObject)
	{

		objRequest=new ActiveXObject("Microsoft.XMLHTTP");
		if(objRequest==null)
			objRequest=new ActiveXObject("MSXML2.XMLHTTP");
		if(objRequest==null)
			objRequest=new ActiveXObject("MSXML2.XMLHTTP.3.0");
		if(objRequest==null)
			objRequest=new ActiveXObject("Msxml2.XMLHTTP.4.0");
		if(objRequest==null)
			objRequest=new ActiveXObject("Msxml2.XMLHTTP.5.0");
		if(objRequest==null)
			objRequest=new ActiveXObject("Msxml2.XMLHTTP.6.0");
		if(objRequest==null)
			objRequest=new ActiveXObject("Msxml2.XMLHTTP.7.0");

	}
	
}

function getRule(id)
{
	
	
	//document.getElementById("tcaption").innerHTML=document.getElementById("txttournament").value+"<br/> As on 10.03.2009";
	$.blockUI({ message: '<img src=image/loader.gif></img>',css: { backgroundColor: '#292929', color: '#fff', width: '100', height: '100', border: '0px solid #f00', left: '50%', top: '50%'} });
	if(objRequest)
	{
		objRequest.open("POST","rule.php?r="+ new Date().getTime());
		objRequest.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
		objRequest.onreadystatechange=function()
		{
		if(objRequest.readyState==4 && objRequest.status==200)
			{

					var strtitle="";
					strtitle=strtitle+"<font color='#990000'><em>&nbsp;Rules &amp; Regulations&nbsp;&nbsp;</font></em>";
					
					var str="";
					
					

					str=str+" <table width='670' border='0' cellspacing='0' cellpadding='0' style='margin:10px 0 1px 10px; border:1px solid #666666'><tr height='25' bgcolor='#666666'><td style='color:#ffffff; font-weight:bold'>&nbsp;&nbsp;"+fromsession+" - "+tosession+" > "+document.getElementById("txttournament").value+"</td></tr><tr><td style='text-align:justify'>"+objRequest.responseText+"</td></tr></table>";
					//str=str+"<div class='caption1'>"+document.getElementById("txttournament").value+"</div>"
					
					//str=str+objRequest.responseText;
					
				
					
					
					//document.getElementById("toparea1").innerHTML=strtitle;
					//document.getElementById("toparea3").innerHTML=str;
					
					document.getElementById("toparea1").innerHTML=strtitle;
					document.getElementById("toparea2").style.display="none";
					document.getElementById("toparea2").innerHTML="";
					document.getElementById("toparea4").innerHTML=str;
					//document.getElementById("toparea3").innerHTML=str;
					$.unblockUI();
			}
		}
		objRequest.send('tid='+id);
	}
}
