function option(message, url){
    if(confirm(message)) {
        location.href = url;
    }
}