function uv_show_video(id){
    window.open('../uvapp/?c=video&a=show&id=' + id, 'video', 'toolbar=no,status=no,title=no,menubar=no,resizable=yes,scrollbars=yes,width=753,height=686');
}

function uv_delete_comment(delete_url, comment_id){
    if (!confirm('本当にこのコメントを削除してもよろしいですか？')) 
        return;
    window.location.href = delete_url + "&id=" + comment_id;
}


// rate_postを上書きする。
function rate_post_override() {
	// console.log(post_rating);
	jQuery('#post-ratings-' + post_id).fadeTo('def', 0);   // フェードアウトさせる。
    window.location.href = '../uvapp/?c=wordpress&a=rate&' + jQuery.param({score: post_rating, post_id: post_id, redirect_to: permalink});
}
jQuery(function(){
    rate_post = rate_post_override;   
});


var permalink;
jQuery(function(){
    permalink = jQuery('a[rel="bookmark"]').attr("href");
});

