function confirmAction(theMessage) {
    if(typeof(window.opera) != 'undefined') {
      return true;
    }
    var is_confirmed = confirm(theMessage);
    return is_confirmed;
}