	<!-- add everything between the '//==  ===//' within the head tags of your document -->
    <!-- //=============================// -->

        /* 
         ******************************************
         **   DHTML No-Block PopUp Window Script **
         **   (c)2005 Spider WebMaster Tools.com **
         **  http://www.SpiderWebMasterTools.com **
         ******************************************
         
         The following variables an be assigned your particuliar values. Keep all values within single quotes ('). Do not use 'auto' or percentages for pop up window width or height if the variable centerPopUpWindow is set to yes.
         */
        var popWindowWidth = '300'; // pop up window width (in pixels) .
        var popWindowHeight = '290'; // pop up window height (in pixels).
        var centerPopUpWindow = 'no'; // do you want the pop up window to be automatically centered in browser window? yes or no. NOTE: Height is somewhat higher than center due to toolbars and browser top height.
        var popWindowBackgroundColor = 'FFFFF0'; // pop up window background color (named or rgb).
        var popWindowPadding = '8'; // padding or margin between contents of pop up window and edges of pop up window in pixels.
        var popWindowPositionTop = '20'; // where top edge of popup window will be displayed (ignored if centerPopUpWindow = true - see above).
        var popWindowPositionLeft = '100'; // where left edge of popup window will be displayed (ignored if centerPopUpWindow = true - see above).
        var popWindowBorderStyle = 'solid'; // type of border for popup (solid,double,grooved,ridged,inset,outset).
        var popWindowBorderWidth = '5'; // border thickness of popup window (must be at least 3 for double style).
        var popWindowBorderColor = 'CC0000'; // color of border (named or rgb).
        var popWinFontFamily = 'arial,verdana,sans-serif'; //font-family of text within pop up window. NOTE: Leave empty ('') if defined elsewhere.
        var popWinFontSize = '15px'; // size of font for text in pop up window. Again, leave empty ('') if defined elsewhere.
        var popWindowDelay = '10'; // microseconds before pop up is displayed (1000 = 1 second).
        var popWindowShadowColor = '#666666'; //drop shadow color, named or rgb - shows in IE5+ only. 'none'=no shadow.
        

    	<!-- DO NOT CHANGE ANYTHING BELOW HERE! -->
   
        var ie = document.all
        var ns6 = document.getElementById && !document.all
        
        var jsEmail = postEmailAddress;
		var getjsEmail = getEmailAddress;

		//Check to see if there is a campaign code in the query string
		var jsCampaign = getCampaignContent;
        
        //Show the popup only if the user is coming from a page where they fill out their contact information (capture page)!
        function showPopUp(){
            /*if (jsEmail.length != 0 || jsCampaign.length !=0) {*/
           if (jsEmail.length != 0 || getjsEmail.length !=0) {
			 document.getElementById('pWinConfg').style.visibility = 'visible';
            }
        }
        
        function hidePopUp(){
            document.getElementById('pWinConfg').style.visibility = 'hidden';
        }
        
        function startPopUp(){
            timerID = setTimeout('showPopUp()', popWindowDelay);
        }
        
        /*
         heres where we set the popup window class properties..
         */
        var pWinConfg = "<style>.pWinConfg{\n";
        if (popWinFontFamily !== '') {
            pWinConfg += "font-family:" + popWinFontFamily + ";\n";
        }
        if (popWinFontSize !== '') {
            pWinConfg += "font-size:" + popWinFontSize + ";\n";
        }
        pWinConfg += "position:absolute;\n";
        pWinConfg += "width:" + popWindowWidth + ";\n";
        pWinConfg += "height:" + popWindowHeight + ";\n";
        pWinConfg += "background-color:" + popWindowBackgroundColor + ";\n";
        if (centerPopUpWindow.toLowerCase() == 'yes') {
            var popTop = (screen.height / 2.667) - (popWindowHeight / 2);
            var popLeft = (screen.width / 2) - (popWindowWidth / 2);
            pWinConfg += "top:" + popTop + ";\n";
            pWinConfg += "left:" + popLeft + ";\n";
        }
        else {
            pWinConfg += "top:" + popWindowPositionTop + ";\n";
            pWinConfg += "left:" + popWindowPositionLeft + ";\n";
        }
        pWinConfg += "border-style:" + popWindowBorderStyle + ";\n";
        pWinConfg += "border-width:" + popWindowBorderWidth + ";\n";
        pWinConfg += "border-color:" + popWindowBorderColor + ";\n";
        pWinConfg += "z-index:1000;" + "\n";
        pWinConfg += "padding:" + popWindowPadding + ";\n";
        pWinConfg += "visibility:hidden;\n";
        if (popWindowShadowColor != 'none') {
            pWinConfg += "@filter: progid:DXImageTransform.Microsoft.Shadow(color=" + popWindowShadowColor + ",direction=135);\n";
        }
        pWinConfg += "}<\/style>\n";
        document.write(pWinConfg);
  
    <!-- //=============================// -->
