//////////////////////////////////////////////////////////////////////
////
////      Crazy Responder 4 U 
////
////      crazycapture.js
////
/////////////////////////////////////////////////////////////////////

function secondtime()
  { 
    var Value="crazy";setCookie("crazy",Value,null);
  }

function setCookie(name, value, expire)
  {
    document.cookie = name + "=" + escape(value) + ((expire == null) ? "" : ("; expires=" + expire.toGMTString()))
  }


function DoIt()
  { 
    if (navigator.appVersion.indexOf("AOL") == -1)
      {
        var GetIt=getCookie("crazy");
	if(GetIt==null)
          {
	  if (confirm(
            ///////////////////////////////////////////////////////////////////
            ///// EDIT THE NEXT Section                                  /////
            //																 //
            // This is the text that will appear in your pop-up window. For	 //
            // a new line use \n.                                           //
            //																 //
            ///////////////////////////////////////////////////////////////////
            "Do you want a pop-up like\nthis that automatically subsribes\nyour visitors to your newsletter?\n\nTo receive step-by-step instructions\nsimply click O.K. Below.\n\nNOTICE:  We never rent or sell\nour subscribers' data to anyone.\nAll information is held strictly\nconfidential.\n "))
            ///////////////////////////////////////////////////////////////////
            //////            DO NOT EDIT ANY FURTHER                //////////
            ///////////////////////////////////////////////////////////////////
            {
              secondtime();
              document.crazycapture.button.click();
            } 
          else
	    {
              secondtime();
	    }
	  }
      }
  }

function NukeIt()
  {
    setCookie("capture",null,null);
  }

function getCookie(Name)
  {
    var search = Name + "=";
    if (document.cookie.length > 0)
      {
        offset = document.cookie.indexOf(search);
        if (offset != -1) 
          {
            offset += search.length;
            end = document.cookie.indexOf(";",offset);
            if (end == -1)
              end = document.cookie.length;
            return unescape(document.cookie.substring(offset, end))
	  }
       }
  }

var counted=0;

