{
YesNoCancelMessage ynmcQuestion=new YesNoCancelMessage(mwcHost, "Virtual cache", "<html>Are you sure that you want to delete database "+mwcHost.getProfile().getName()+"?<br>The data will be securely deleted without restoration possibility!</html>", false);
ynmcQuestion.setVisible(true);
if(ynmcQuestion.getResult()==YesNoCancelMessage.YES)
{
Eraser er=new Eraser(mwcHost.getOpenedFile());
if(!er.Erase())
{
OKMessage okm=new OKMessage(mwcHost, "Unavble to delete file!");
okm.setVisible(true);
okm=null;
}