// JavaScript Document
site1="http://www.vickyeventos.com.br/index.html"
site2="http://www.vickyeventos.com.br/empresa.html"
site3="http://www.vickyeventos.com.br/festas.html"
site4="http://www.vickyeventos.com.br/festa_junina.html"
site5="http://www.vickyeventos.com.br/servicos.html"
site6="http://www.vickyeventos.com.br/contato.html"
site7="http://www.vickyeventos.com.br/mapa_site.html"

function abreSite(tipo){
	//botão 1
	if(tipo=='bot1')
		return window.location =site1;
	
	//botão 2
	if(tipo=='bot2')
		return window.location =site2;
	
	//botão 3
	if(tipo=='bot3')
		return window.location = site3;
	
	//botão 4
	if(tipo=='bot4')
		return window.location = site4;
	
	//botão 5
	if(tipo=='bot5')
		return window.location = site5;

	//botão 6
	if(tipo=='bot6')
		return window.location = site6;
		
	//botão 7
	if(tipo=='bot7')
		return window.location = site7;
		

}