function delete_item(url){
  
  var ok=confirm('Are you sure want to delete this item?');
  if(ok)
  	{
	    window.location=url;
	}
  
  
  
}
