function _bookmark(url, title) {
    window.external.AddFavorite(url, title);
    return false;
}


// -
// Write vote table
// -
function _write_voter(type, ratio, id, voters) {

    if(type == 'blog') { _color = '2AA100';  }
    if(type == 'free') { _color = 'FFAD08';  }
    if(type == 'pay') { _color = 'A100D6';  }
    if(type == 'other') { _color = '9C9C9C';  }
    if(type == 'tgp') { _color = 'FF6C00';  }
    if(type == 'gallery') { _color = 'D60000';  }
    if(type == 'avs') { _color = '0079D6';  }

//    rate_v    
    pos = document.cookie.indexOf('rate_v' + id + '=');

    if(pos == -1) {
        a = document.getElementById("v_" + id);
        a.innerHTML = '<table width="42" height="42" cellpadding="0" cellspacing="0" background="/imgs/voter/bg_' + type + '.gif"><tr><td align="center" style="font: bold 18px Arial; color: ' + _color + '; ">' + ratio + '</td></tr><tr><td height="13" align="center" valign="top"><a onClick=" _show_voter(\'' + type + '\', ' + ratio + ', ' + id + '); VoteID = ' + id + '; VoteRatio = ' + ratio + '; VoteType = \'' + type + '\'; VoteVoters = \'' + voters + '\'; return false;" href="#"><img src="/imgs/voter/button_' + type + '.gif" border="0" alt="Vote for this site" width="38" height="11" /></a></td></tr></table>';
    } else {
        _vote(type, ratio, id);
    }
}


// /vote.php?id=' + id + '
function _vote(type, ratio, id) {

    if(type == 'blog') { _color = '2AA100';  }
    if(type == 'free') { _color = 'FFAD08';  }
    if(type == 'pay') { _color = 'A100D6';  }
    if(type == 'other') { _color = '9C9C9C';  }
    if(type == 'tgp') { _color = 'FF6C00';  }
    if(type == 'gallery') { _color = 'D60000';  }
    if(type == 'avs') { _color = '0079D6';  }

    a = document.getElementById("v_" + id);
    a.innerHTML = '<table width="42" height="42" cellpadding="0" cellspacing="0" background="/imgs/voter/bg_' + type + '.gif"><tr><td align="center" style="font: bold 18px Arial; color: ' + _color + '; ">' + ratio + '</td></tr><tr><td height="13" align="center" valign="top"><img src="/imgs/voter/button_' + type + '_done.gif" border="0" alt="Vote for this site" width="38" height="11" /></td></tr></table>';  
}
