			function DisplayConfirm(txt, action){

				    $.prompt(txt,{ 
					
					buttons:{Delete:true, Cancel:false},
					callback: function(v,m,f){
						//value = v; 
						if(v){
							window.location = action;
							return false;
							//var uid = f.userid;
							//Here is where you would do an ajax post to remove the user
							//also you might want to print out true/false from your .php
							//file and verify it has been removed before removing from the 
							//html.  if false dont remove, $promt() the error.
							
							//$.post('removeuser.php',{userid:f.userid}, callback:function(data){
							//	if(data == 'true'){
							
									//$('#userid'+uid).hide('slow', function(){ $(this).remove(); });
									
							//	}else{ $.prompt('An Error Occured while removing this user'); }							
							//});
						}
						else
						{
							return false;
						}
						
					}
				});
				
				return false;
				
			}
			function frmConfirm(txt, name){

				    $.prompt(txt,{ 

					buttons:{Delete:true, Cancel:false},

					callback: function(v,m,f){

						//value = v; 
						
						if(v){
							
							//window.location = action;
							form = document.getElementById(name);
							form.submit();
							return false;

						}

						else

						{

							return false;

						}

					}
					

				});

				return false;

			}