function bookmark() {
	title = "Orlando4Villas";
	url = "http://www.orlando4villas.com/";
	window.external.AddFavorite(url,title);
}

function addBookmark(source) {
    // Get Description, Keywords from meta tags
    var keywords = '', description = '';
    var meta=document.getElementsByTagName("meta");
    for(var i=0; i<meta.length; i++){
        if (meta[i].name.toLowerCase() == 'keywords') keywords=meta[i].content;
        if (meta[i].name.toLowerCase() == 'description') description=meta[i].content;
    }
    // Add Links
    if (source=='delicious') url = 'http://del.icio.us/post?v=4&noui&jump=close&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title);
    if (source=='digg')      url = 'http://digg.com/submit?phase=2&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)+'&bodytext='+encodeURIComponent(document.description)+'&topic="news"';
    if (source=='facebook')  url = 'http://www.facebook.com/sharer.php?u='+encodeURIComponent(location.href)+'&t='+encodeURIComponent(document.title);
    if (source=='google')    url = 'http://www.google.com/bookmarks/mark?op=add&title='+encodeURIComponent(document.title)+'&bkmk='+encodeURIComponent(location.href)+'&labels='+keywords+'&annotation='+description;
    if (source=='reddit')    url = 'http://reddit.com/submit?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title);
    // Open Window
    window.open(url,source,'toolbar=no,height=550,width=780,resizable=yes,status=yes,scrollbars=yes');
}