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+"<table width='600' border='0' cellspacing='0' cellpadding='0' style='text-align:left;'>";
					strtitle=strtitle+"<tr height='14'>";
					strtitle=strtitle+"<td width='15' bgcolor='#69c6c7'>&nbsp;</td>";
					strtitle=strtitle+"<td width='125' align='center'><strong>Rules &amp; Regulations&nbsp;</strong></td>";
					strtitle=strtitle+"<td width='460' background='image/line.jpg'>&nbsp;</td>";
					strtitle=strtitle+"</tr>";
					strtitle=strtitle+"</table>";
					var str="";
					//str=str+"<div id='header' style='background-color:#000000; height:30px;width:528px;margin: 20px 0px 0px 12px;padding-bottom:5px;'>";
					//str=str+"<div class='caption1'>"+document.getElementById("txttournament").value+"</div>"
					
					//str=str+"</div><br/>"+objRequest.responseText;
					str=str+objRequest.responseText;
					
					//document.getElementById("topindex").style.display="block";
					document.getElementById("toparea1").innerHTML=strtitle;
					document.getElementById("toparea3").innerHTML=str;
					$.unblockUI();
			}
		}
		objRequest.send('tid='+id);
	}
}
