function radio_button_checker(rate,id,articleLink)
{
	
	var rateValue = "";
	for( i=0 ; i < rate.length; i++)
	{
		
		if ( rate[i].checked )
		{
			rateValue = rate[i].value;
		}
	}
//	alert(rateValue);
	if (rateValue == "")
	{
		alert("Please Select your rating")
		return false;			
	}
	
	var sURL = "/industry-article/ratearticle1.asp?" 
	var sQry = "rate=" + rateValue + "&id=" + id + "&articlelink=" + articleLink
	sURL = sURL + sQry + "&sid=" + Math.random();

		
	var xmlHttp = null 	
	if (typeof window.ActiveXObject != 'undefined' ) 
	{ 
		xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); 
	} 
	else 
	{ 
		xmlHttp = new XMLHttpRequest(); 
	}



	xmlHttp.open("GET", sURL, false);
	xmlHttp.send(null);

	if (xmlHttp.readyState == 4 || xmlHttp.readyState=="complete") 
	{	
		document.getElementById("popup").innerHTML=xmlHttp.responseText
	}
}
// JScript source code
