<!--
	function confirmkill(id)
	{
		if(confirm("Are you sure you want to delete this?"))
		{	window.location = id;	}
	}



function showhide (it) { 
	var box = document.getElementById(it).style.display;
  var vis = (box == "none") ? "block" : "none"; 
  document.getElementById(it).style.display = vis;
} 
--> 