" />')">
function k_delete_tile( fid, nonce ){
if( confirm('') ){
var qs = '?o=mosaic&q=delete_tile/'+nonce+'/'+fid;
$.ajax({
dataType: "text",
url: qs
}).done(function( data ) {
if( data === "OK" ){
window.location.reload( true );
}
else{
alert( data );
}
});
}
}