// JavaScript Document
function getConfirmation(action,delete_id,type){
   var retVal = confirm("Do you really want to delete this Information Item ?");
   if( retVal == true ){

	 document.location = "index.php?action=" + action + "&type=" + type + "&delete=" + delete_id;

	// return true;
   }else{

	 // return false;
   }
}