// JavaScript Document
function bookmark(id)
{
	var url = 'http://www.agropecuariacapeba.com.br/';
	var title = 'Agropecuaria Capeba';
	if(navigator.userAgent.indexOf("MSIE")!=-1)
	{
		window.external.AddFavorite(url, title)
	}
	else if(navigator.userAgent.indexOf("Firefox")!=-1)
	{
		window.sidebar.addPanel(title, url, "");
	}
	else if(navigator.userAgent.indexOf("Opera")!=-1)
	{
		var a = document.getElementById(id)
		a.rel = "sidebar"
		a.href = url
		a.title = title
		a.click()
	}
	else
	{
		alert("Pressione CTRL + D para adicionar aos favoritos!")
	}
}

// indicacao popup
var WindowObjectReference = null; // global variable
function openRequestedPopup(strUrl, strWindowName)
{
	if(WindowObjectReference == null || WindowObjectReference.closed)
	{
		WindowObjectReference = window.open(strUrl, strWindowName,"width=600,height=350,resizable=no,scrollbars=no,status=no");
	}
	else
	{
		WindowObjectReference.focus();
	};
}

// link indicacao
function op_ind(href,target) {
	b=prompt('Digite o E-mail de quem você deseja indicar este site:');
	if(b!=null && b!='') openRequestedPopup(href+b,target);
}
