function Confirm(str) { 
    var confirmed = confirm(str) 
    if(confirmed) { 
        return true 
    } else { 
        return false 
    } 
}
