window.addEvent("domready", function(){
  if (typeof this_is_IE_6 != "undefined" ||
      Cookie.get("visited") || 
      Cookie.get("submitted")) {
    return;
  }

  document.getElementById("signup").onsubmit = function(){
    Cookie.set("submitted", "true", {duration: 2000});
  };

  Cookie.set("visited", "true", {duration: 30});

  var doPopup = function(){
    MOOdalBox.open("/thankyou_popup.html", "", "500 300");
  };

  setTimeout(doPopup, 30000);
});
