// JavaScript Document

//Admin to delete link
function deletelink(a)
{
	var condel=confirm("Are you sure want to delete?");
	if(condel)
	{
		window.location="delete_link.php?fname="+a;
	}
}


//Admin to delete recent keywordss
function deletekeyword(a)
{
	var b=confirm("Are you sure want to delete?");
	if(b)
	{
		window.location="delete_rec_keyword.php?keyword="+a;
	}
}
