function product_check(id)
{
	radioGrp = document['forms']['0']['country[' + id + ']'];
	if ($('country_id_' + id).checked == false)
	{		
		if (radioGrp.length > 0)			
		{	
			for(i=0; i < radioGrp.length; i++)
			{
				radioGrp[i].checked = false;
			}
		}
		else
		{
			radioGrp.checked = false;
		}
	}
	else
	{		
		if (radioGrp.length > 0)
			radioGrp[0].checked = true;			
		else
			radioGrp.checked = true;
	}
}

function product_item_check(id)
{
	radioGrp = document['forms']['0']['country[' + id + ']'];
	if ($('country_id_' + id).checked == false)
	{
		if (radioGrp.length > 0)			
		{	
			for(i=0; i < radioGrp.length; i++)
			{
				radioGrp[i].checked = false;
			}
		}
		else
		{
			radioGrp.checked = false;
		}
	}
}

function showSMS(_id)
{
	alert(_id);		
	var url = '/report/sms_detail/'+_id;
	var detailed = $('detailed');
	
	var ajax = new Ajax(url, { 
		update: detailed,
		method: 'get',
		oncomplete: showDiv()
	});
	 
	ajax.request(''); 
}	

function showDiv()
{
	$('detailed').style.visibility='visible';
	$('detailed').style.display='block';
	$('detailed').setStyles({'top':Event.page.y,'left':Event.page.x,'position':'absolute'});
}	
