

function abrir(str)
	{	tipWin = window.open(str,'tipWin','top=0,width=650,height=500,scrollbars=yes,resizable=yes');	}

function abrir2(str)
	{	tipWin = window.open(str,'tipWin','top=0,width=650,height=500,scrollbars=yes');	}

function abrir3(str)
	{	tipWin = window.open(str,'tipWin','top=0,width=650,height=450,scrollbars=yes');	}

function escolhe_teste(teste)
{
  if (teste != "")
  {
    var url = "http://www.cyberlove.com.br/"+ teste +"/index.asp";
    window.location.href = url;
  }
    else
    {	
      alert('Selecione um teste !');
    }
}


function escolhe_aniversario(aniversario)
{
  if (aniversario != "")
  {
    var url = "http://www.cyberlove.com.br/aniversario/index.asp?mes="+ aniversario+"";
    window.location.href = url;
  }
    else
    {	
      alert('Escolha um mês !');
    }
}



// Enquete
function enquete(jan) {
 DisplayInfo('',jan,500,250);
}
function DisplayInfo(pagina,janela,w,h,withcookie,scrolling) {
 var show
 show = 1
 if (!scrolling) { scrolling='auto' }
 if (withcookie) {
  show = !GetCookie(withcookie)
  document.cookie = withcookie+"=1;path=/;domain=.cyberlove.com.br"
 }
 if (show) { 
  resultado = window.open(pagina,janela,'width='+w+',height='+h+',scrollbars=yes,toolbar=no,location=no,status=no,menubar=no,resizable=yes,left=0,top=0')
  if ((navigator.appName != "Microsoft Internet Explorer") && (navigator.appVersion.substring(0,1) >= "3")) resultado.focus();
 }
}