// JavaScript Document
function deleteTestimonial(deleteid)
{
	
	if(confirm("Are you sure to delete these testimonial?"))
	{
		document.getElementById('dID').value=deleteid;
		document.getElementById('action').value='delete';
		
		document.getElementById('testimonialfrm').submit();
		return true;
	}
	else
	{
		return;
	}
}
function approveTestimonial(approveid)
{
		
	
		document.getElementById('dID').value=approveid;
		document.getElementById('action').value='approve';
		
		document.getElementById('testimonialfrm').submit();
		return true;
	
	
}
function viewTestimonial(vid)
{
		
	
		document.getElementById('dID').value=vid;
		document.getElementById('action').value='view';
		
		document.getElementById('testimonialfrm').submit();
		return true;
	
	
}
function disapproveTestimonial(disapproveID)
{
		
	
		document.getElementById('dID').value=disapproveID;
		document.getElementById('action').value='disapprove';
		
		document.getElementById('testimonialfrm').submit();
		return true;
	
	
}