var Table = {
	gotoPage: function(link) {
		window.location = link.href;
	},
	
	tableNavigation: function(obj) {
		obj.style.backgroundColor = "#DBDBDB";
		obj.style.cursor = "pointer";
		obj.onmouseout = function() { obj.style.background = "transparent"; obj.style.cursor = "default";};
		
		//obj.onclick = this.gotoPage(link);
	},
}

var Links = {
	confirmDeletion: function(id) {
		if(confirm("Are You sure to delete comment "+ id)) {
			return true;
		}
	
		return false; 
	}
}

