// JavaScript Document
<!--
	function abrirLocalizacao() {
		var w = 515;
		var h = 700;
		var winl = (screen.width - w) / 2;
	   	var wint = (screen.height - h) / 2;
		WinPop=window.open('localizacao.html','localizacao','width='+w+',height='+h+',left='+winl+',top='+wint+'"');		
		WinPop.window.blur();
		WinPop.window.focus();
	}

	function abrirFamilia() {
		WinPop=window.open('familia.html','familia','width=435,height=532,left=200,top=150"');
		WinPop.window.blur();
		WinPop.window.focus();
	}
		
	function abrirAlbum() {
		//centrada
		var w = 892;
		var h = 402;
		var winl = (screen.width - w) / 2;
	   	var wint = (screen.height - h) / 2;
		WinPop=window.open('album_memorias.html','album','width='+w+',height='+h+',left='+winl+',top='+wint+'"');
		WinPop.window.blur();
		WinPop.window.focus();
	}

	function abrirVinho( theURL ) {
		//centrada
		var w = 950;
		var h = 650;
		var winl = (screen.width - w) / 2;
	   	var wint = (screen.height - h) / 2;
		WinPop=window.open( 'vinho_'+theURL+'.html','vinhos','width='+w+',height='+h+',left='+winl+',top='+wint+'"');
		WinPop.window.blur();
		WinPop.window.focus();
	}
	
	function abrirContactos() {
		var w = 423;
		var h = 475;
		var winl = (screen.width - w) / 2;
	   	var wint = (screen.height - h) / 2;
		WinPop=window.open( 'contactos.html','contactos','width='+w+',height='+h+',left='+winl+',top='+wint+'"');
		WinPop.window.blur();
		WinPop.window.focus();
	}
	
	function abrirCarrinho() {
		window.top.location.href="carrinho.php";
		/*
		var w = 900;
		var h = 630;
		var winl = (screen.width - w) / 2;
	   	var wint = 1;//(screen.height - h) / 2;
		WinPop=window.open( 'carrinho.php?pop=true','carrinho','width='+w+',height='+h+',left='+winl+',top='+wint+'",alwaysRaised=yes,resizable=yes,scrollbars=yes');
		WinPop.window.blur();
		WinPop.window.focus();*/
	}
	
	function abrirComentarios() {
		var w = 565;
		var h = 590;
		var winl = (screen.width - w) / 2;
	   	var wint = (screen.height - h) / 2;
		WinPop=window.open( 'comentarios.php','comentarios','width='+w+',height='+h+',left='+winl+',top='+wint+'"');
		WinPop.window.blur();
		WinPop.window.focus();
	}

	function abrirComentarios2() {
		var w = 565;
		var h = 590;
		var winl = (screen.width - w) / 2;
	   	var wint = (screen.height - h) / 2;
		WinPop=window.open( 'club_post.php','comentarios2','width='+w+',height='+h+',left='+winl+',top='+wint+'"');
		WinPop.window.blur();
		WinPop.window.focus();
	}
	
	function abrirClub() {
		window.top.location.href="club.php";
		/*
		var w = 900;
		var h = 600;
		var winl = (screen.width - w) / 2;
	   	var wint = (screen.height - h) / 2;
		WinPop=window.open( 'club.php','club','width='+w+',height='+h+',left='+winl+',top='+wint+'",alwaysRaised=yes,resizable=yes,scrollbars=yes');
		WinPop.window.blur();
		WinPop.window.focus();*/
	}
	
//-->