function showIcons(flag, id) {
	if(flag == true) {
		document.getElementById("icons"+id).style.display = "inline";
	}
	else {
		document.getElementById("icons"+id).style.display = "none";
		}
}

function edit(key) {
	window.location = "/home/edit/" + key;
}

function del(key) {
	if(confirm('Are you sure you want to delete this link? ')) {
		window.location = "/home/delete/" + key;
	}
}


