<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Scriptsspot</title>
	<atom:link href="http://www.scriptsspot.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scriptsspot.com</link>
	<description>Marketing Software Scripts and Plugins</description>
	<lastBuildDate>Fri, 13 Jan 2012 00:40:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<div id="aml_position">
  <div id="aml">
    <p id="aml_offer">
       <table
 style="width: 295px; height: 400px; text-align: left; margin-left: auto; margin-right: auto;"
 border="0" cellpadding="2" cellspacing="0">
  <tbody>
    <tr align="center">
      <td><span style="color: rgb(102, 0, 204);"><a href="http://http://www.scriptsspot.com/popin-buddy/" target="_blank">PopinBuddy</a>
IN ACTION</span><br>
Add any html code you wish here, set the delay times, set the messages, and your away, See the video here: <a href="http://http://www.scriptsspot.com/popin-buddy/" target="_blank">PopinBuddy</a>
Hello, thanks for dropping by.<br>
We would like to offer you <br>
our latest wordpress plugins <br>
at a heavily discounted  price.<br>
      <big><span style="color: rgb(0, 0, 153);">Bringemback</span><br
 style="color: rgb(0, 0, 153);">
      <span style="color: rgb(0, 0, 153);">PaypalButton
Generator</span><br style="color: rgb(0, 0, 153);">
      <span style="color: rgb(0, 0, 153);">PopinBuddy</span></big><br>
      <span style="color: rgb(204, 0, 0);"><big>ALL
3 for JUST *$7.00*</big><br>
      <span style="color: rgb(0, 0, 0);">Pop your<span
 style="color: rgb(204, 0, 0);"> name</span> and <span
 style="color: rgb(204, 0, 0);">email address</span> <br>
in
the form below to access these bargains</span>,<br>
Along with A FEW Surprizes</span> </td>
    </tr>
    <tr align="center">
      <td>
      <script language="JavaScript">
function checkSub(){
if (document.signup.email.value.indexOf('@', 0) == -1) {
alert("Please fill in your valid Email address.nYour email should be in the following format: email@address.com")
document.signup.email.focus()
return false}
if (document.signup.fname.value == "") {
alert("Please fill in your First name.")
document.signup.fname.focus()
return false} }</script>
      <form action="http://rapidresponsebot.com/ar/ar/optin.php"
 method="post" name="signup" onsubmit="return checkSub()"><input
 name="action" value="addlead" type="hidden"><input
 name="member" value="246" type="hidden"><input
 name="auto" value="1111" type="hidden"><input
 name="thankyou"
 value="http://www.scriptsspot.com/subscriber-special-offer/"
 type="hidden">
        <table border="0" cellpadding="2"
 cellspacing="0">
          <tbody>
            <tr>
              <td><font face="arial, verdana" size="2">First
Name:</font></td>
              <td><input size="20" name="fname"
 type="text"></td>
            </tr>
            <tr>
              <td><font face="arial, verdana" size="2">Email
address:</font></td>
              <td><input size="20" name="email"
 type="text"></td>
            </tr>
            <tr>
              <td></td>
              <td align="center"><input
 value="Count Me In" type="submit"></td>
            </tr>
          </tbody>
        </table>
      </form>
      </td>
    </tr>
  </tbody>
</table>
    </p>
    <p id="aml_buttons">
      <button onclick="aml.onNoThanks()">
        No thanks.      </button>
      <button onclick="aml.onAskMeLater()">
        Ask me later.      </button>
    </p>
  </div>
</div>

<script type="text/javascript">

var closeButton = '<p><button onclick="aml.onClose()">close</button></p>';

var aml = 
{
  show: function() 
  {
     // only show if the cookie is NOT present
     if (! this.suppressed())
     {
	jQuery("#aml").slideDown('slow');
     }
  },

  onNoThanks: function()
  {
     // suppress for 10 years
     this.suppress(365 * 24 * 10, 'h');
     jQuery("#aml")
       .html('OK. We won\'t ask you again.')
       .append(closeButton);
  },
  
  onAskMeLater: function()
  {
     var firstTime = (document.cookie.indexOf("aml_seen=true") == -1);
     if (firstTime)
     {
	this.suppress(1, 
		      'm');
     }
     else 
     {
	this.suppress(3, 
		      'm');
     }
     jQuery("#aml")
       .html('OK. We\'ll ask you again later.')
       .append(closeButton);
  },



  onClose: function()
  {
     jQuery("#aml").fadeOut();
  },


  suppress: function(delay, unit)
  {
     // now set cookie:

     var h = (unit == 'h') ? delay : 0;
     var m = (unit == 'm') ? delay : 0;
     var s = (unit == 's') ? delay : 0;
     var now = new Date().getTime();

     var date1 = new Date(now + (h*60*60*1000) + (m*60*1000) + (s*1000));
     var newCookie = "aml_suppress=true; expires=" + date1.toGMTString() + "; path=/";
     document.cookie = newCookie;

     // second cookie (10 years)
     // because the initial and subsequent delays may be different
     var date2 = new Date(now + (10*365*24*60*60*1000));
     var newCookie2 = "aml_seen=true; expires=" + date2.toGMTString() + "; path=/";
     document.cookie = newCookie2;
  },

  suppressed: function()
  {
     return document.cookie.indexOf("aml_suppress=true") > -1;
  },

  // debug function:
  eraseCookie: function()
  {
     this.suppress(-1,0); // expire 1 day ago
     alert("cookie expired. hit refresh");
  }
};

setTimeout('aml.show()', 8 * 1000);
</script>
	<item>
		<title>Running Your Home Business: What You Need To Know</title>
		<link>http://www.scriptsspot.com/running-your-home-business-what-you-need-to-know/</link>
		<comments>http://www.scriptsspot.com/running-your-home-business-what-you-need-to-know/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 12:24:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[business contracts]]></category>
		<category><![CDATA[day job]]></category>
		<category><![CDATA[home business]]></category>
		<category><![CDATA[internet phone]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[need to know]]></category>
		<category><![CDATA[running your home business what you need to know]]></category>
		<category><![CDATA[service provider contracts]]></category>
		<category><![CDATA[successful home business]]></category>
		<category><![CDATA[time consuming]]></category>
		<category><![CDATA[work from home]]></category>

		<guid isPermaLink="false">http://www.scriptsspot.com/running-your-home-business-what-you-need-to-know/</guid>
		<description><![CDATA[Would you honestly believe someone that tells you he or she could work from home and retire from his or her day job? It is important to note that lots of potentially questionable marketing is geared toward people&#8217;s desire to run a business out of their home. It is possible to have a successful home...</p><p><strong><a class="more-link" href="http://www.scriptsspot.com/running-your-home-business-what-you-need-to-know/">Read the rest of this entry</a></strong></p>]]></description>
		<wfw:commentRss>http://www.scriptsspot.com/running-your-home-business-what-you-need-to-know/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

