function showReportForm(id, idfor)
{
	var reportURL	= '#TB_inline?height=300&width=530&inlineId=reportDIV&modal=true';
	$('#report_for').val(idfor);
	$('#report_for_id').val(id);
	tb_show('', reportURL, false);
}

function checkComment()
{
	if($.trim($('#report_comment').val()) == '')
	{
		$('#report_comment').val('');
		$('#reportError').show();
		return false;
	}
	else
		return true;
}

	function onDelete()
	{
		if(confirm("Are You Sure ?"))
		{
			return true;
		}
		else
		{
		 return false;
		} 	
	}	
	

