//////////////////////////////////////////////////////////////////////
//                                                                  //
//                     ULTRA LIST BUILDER (tm)                      //
//                  List Building & Mining System                   //
//                                                                  //
//                     Anthony Stillwell, 2002                      //
//                       All rights reserved                        //
//                                                                  //
//                http://www.getfreeadvertising.com                 //
//                                                                  //
//     Selling or distributing this software in whole or            //
//     in part or of any modification of this software without      //
//     written permission is expressly forbidden. Permission        //
//     to modify the script for personal use on the domain for      //
//     which this script is licensed is granted to the purchaser.   //
//     In all cases this full header and copyright information      //
//     must remain fully intact. Any and All violators will be      //
//     PROSECUTED to the fullest extent of the law.                 //
//                                                                  //
//////////////////////////////////////////////////////////////////////

// Set usecookie to 1 so that the popup only loads once per session.
// Set it to 0 if you want it to popup every single time the page loads.

var usecookie = 1;

var msg =////////////// Modify Only the Next Line /////////////

"Welcome! Sorry if I gave you a scare..."+
"\n\n  Please accept our Invitation to Subscribe to "+
"\n    *Yahoo! Store Profits E-Magazine*    "+			 	"\n\n  Subscribe now and you'll recieve the All-New Free Report: "+
"\n\n ** The 7 Mistakes E-Commerce Store Owners Make ** "+
"\n         ** And What You Can Do About It! ** "+
"\n\n In addition to your Free Report, you'll get weekly tips like:"+
"\n\n -- Increasing Traffic to your E-Commerce Site. "+
"\n -- The Latest Techniques for Finding Sources for Hot Products. "+
"\n -- No Nonsense advice about creating Multiple Streams of Income. "+
"\n -- Strategies that you can use to Improve your Sales Ratios. "+
"\n -- Free Advice about taking your own product to market. "+
"\n\n When you click 'OK' your e-mail browser will instantly "+
"\n subscribe you using your default email address.  It's That Easy! "+
"\n\n (If you click 'Cancel' you will not be subscribed.)"+
"\n\n ----> YOUR EMAIL WILL NEVER BE SOLD OR SHARED"+
"\n WITH ANYONE -- EVER!"+
"\n\n This is completey Free!  There is No Risk, you will "+
"\n learn bunches, avoid mistakes, and have a pretty good time... "+
"\n And if you don't you can un-subscribe anytime, automatically "+
"\n (There is an 'Un-Subscribe' Link on every edition) "+
"\n\n Please enjoy the site! Your 1st Report should arrive in moments! "+
"\n\n To Your Success! "+
"\n Audrey Kerwoord & Andy Jenkins "+
"\n\n Click 'OK' to Start your Free Subscription...";


	

              ///////////// Stop Editing Here //////////////////

// Enter the subscribe address for your newsletter or autoresponder
var email = "news@yahoo-store-builder.com";

// Enter the subject for your email
var subject = "Send me the free report - The 7 Mistakes";

function getCookieVal (offset)
{
    var endstr = document.cookie.indexOf (";", offset);
    if (endstr == -1)
        endstr = document.cookie.length;
    return unescape(document.cookie.substring(offset, endstr));
}

function GetCookie (name)
{
    var arg = name + "=";
    var alen = arg.length;
    var clen = document.cookie.length;
    var i = 0;
    while (i < clen)
    {
        var j = i + alen;
        if (document.cookie.substring(i, j) == arg)
            return getCookieVal (j);
        i = document.cookie.indexOf(" ", i) + 1;
        if (i == 0) break;
    }
    return null;
}

function CallOnLoad()
{
    if (GetCookie("freereport") == "yes" && usecookie)
        return;
    if (confirm(msg))
    {
        loc = "mailto:" + email;
        if (subject)
            loc = loc + "?subject=" + escape(subject);
        window.location = loc;
    }
    document.cookie = "freereport=yes";
}
// ULTRA LIST BUILDER