var popunder;
window.onload = function()
{
if (document.cookie.indexOf("takesurvey")==-1)
{
setTimeout("showOverlay()", 3000);
}
}
function answer(ans){
if (ans == 'y')
{
document.cookie = 'takesurvey=true; expires=Fri, 31 Dec 2011 20:47:11 UTC; path=/'
popunder = window.open("http://survey.euro.confirmit.com/wix/p679406150.aspx", null, "height=600,width=980,scrollbars=yes");
		 popunder.blur();
window.focus();
document.getElementById('overlaywrapper').style.display="none";
setTimeout("window.onunload = function(){popunder.focus()}", 5000);
 
 
 
}
else{
document.cookie = 'takesurvey=false; expires=Fri, 31 Dec 2011 20:47:11 UTC; path=/'
}
document.getElementById('overlaywrapper').style.display="none";
}
 
function showOverlay()
{
document.getElementById('overlaywrapper').style.display="block";
}

