function redirect( loc )
{	
	location.href = loc;
}

function redirectConfirm( loc )
{
	var agree = confirm("Are you sure you want to delete?");
	if ( agree )	
	{
		//return true;
		location.href = loc;
	}
	else
	{	
		return false;
	}
}

// Hiraman Patil
function checkAll(chk)
{
	if(chk.checked == true)
	{
		var chk1 = document.frm.checkall.length;
		for(var i=0; i < chk1; i++)
		{
			chk1[i].checked = true;
		}
	}
	else
	{
		var chk1 = document.frm.checkall.length;
		for(var i=0; i < chk1; i++)
		{
			chk1[i].checked = false;
		}
	}
}
