function pregunta(){
				var txt = 'borrar';
				$.prompt(txt,{ 
					buttons:{Delete:true, Cancel:false},
					callback: function(v,m){
						if(v){alert('borrarndo');}
						else{alert('porque');}
						}
				});
			}

function mensaje(txt){$.prompt(txt);}

function alerta(elemento,txt,foco){$.prompt(txt,{callback: function(){
																	if(!foco){
																	elemento.focus();
																	}
																	}});}

