// JavaScript Document
function openWindow(l,a,f,n) {
	var theTop=(screen.height/2)-(a/2);
	var theLeft=(screen.width/2)-(l/2);
	
	var features= 'height='+a+',width='+l+',top='+theTop+',left='+theLeft+",scrollbars=yes";
	theWin=window.open(f,n,features);
	theWin.focus();
}

function openRegulamento() {
	openWindow(520,510,"regulamento.php","regulamento");
}

function openBlog() {
	window.open("http://www.grupoguaranabrasil.com.br/blog", "_blank");
	
	//DESCOMENTAR QUANDO O BLOG ESTIVER PRONTO
	//window.location = "http://www.grupoguaranabrasil.com.br/blog";
}