function getCookie(name){
  var cname = name + "=";               
  var dc = document.cookie;             
  if (dc.length > 0) {              
    begin = dc.indexOf(cname);       
    if (begin != -1) {           
      begin += cname.length;       
      end = dc.indexOf(";", begin);
      if (end == -1) end = dc.length;
        return unescape(dc.substring(begin, end));
    } 
  }
  return null;
}

function OpenPopUp()
{
	if (getCookie("encuestaToni") == null)
	{
		window.open('/Polls/Poll.aspx','Encuesta','width=600,height=500,scrollbars=yes,status=yes,resizable=no,titlebar=no,toolbar=no');
	}
	else
	{
		window.location.href = "http://www.tonisa.com/Web/AskAnExpert/AAEPostQuestion.aspx?c=2&e=3&SiteTreeID=377";
	}
}


function MM_openBrWindow2(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}	