// JavaScript Document
function addFav(){
    var url      = "http://www.helderlopes.com.br";
    var title    = "Helder Lopes Imóveis - Venda de imóveis";
	var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;

	if(is_chrome)
	{
		alert('Pressione CTRL+D para adiconar o nosso site aos seus favoritos!');
		return true;
	}

    if (window.sidebar) window.sidebar.addPanel(title, url,"");
    else if(window.opera && window.print){
        var mbm = document.createElement('a');
        mbm.setAttribute('rel','sidebar');
        mbm.setAttribute('href',url);
        mbm.setAttribute('title',title);
        mbm.click();
    }
    else if(document.all){window.external.AddFavorite(url, title);}
}

