function cast_vote(photoblog_id, title, vote_type_id)
{
    if (vote_type_id == 1) { message = "Give a Positive Vote:\n" + title; }
    if (confirm(message))
    {
        document.location = "http://www.blizg.com/vote/?photoblog_id=" + photoblog_id + unescape("%26") + "vote_type_id=" + vote_type_id + unescape("%26") + "referer_url=" + escape(document.location);
    }
}