<?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>Conversion Premium Business WordPress Theme</title>
	<atom:link href="http://demo.chimerathemes.com/conversion/feed/" rel="self" type="application/rss+xml" />
	<link>http://demo.chimerathemes.com/conversion</link>
	<description>Just another ChimeraThemes.com Live Demos site</description>
	<lastBuildDate>Mon, 04 Jun 2012 09:34:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>custom contact form shortcode</title>
		<link>http://demo.chimerathemes.com/conversion/2011/04/11/495/</link>
		<comments>http://demo.chimerathemes.com/conversion/2011/04/11/495/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 22:12:54 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://demo.chimerathemes.com/conversion/?p=495</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<script type="text/javascript">
function validate_email(mail)
{

  var apos= mail.value.indexOf("@");
  var dotpos=mail.value.lastIndexOf(".");
  if (apos<1||dotpos-apos<2)
    {window.alert("Not a Valid EmailID");return false;}
  else {return true;}

}
function check_form(){
	var frm= document.enquiry_form;
	var numexp=/^[0-9]+$/;
	var alphaexp = /^[a-zA-Z]+$/;
	var alphanumexp = /^[0-9a-zA-Z]+$/;
	var emailexp = /^[\w\-\.\+]+\@[a-zA-Z0-9\.\-]+\.[a-zA-z0-9]{2,4}$/;

	if (frm.Fist_Name.value == "")
	{
	    window.alert("Please Enter Your First_Name");
	    frm.First_Name.focus();
		return false;
	}
	else if (frm.Last_Name.value == "")
	{
	    window.alert("Please Enter Your Last_Name");
	    frm.Last_Name.focus();
		return false;
	}
	else if (frm.E_Mail.value == "")
	{
	    window.alert("Please Enter Your Email.");
	    frm.E_Mail.focus();
		return false;
	}

	else if (frm.E_Mail.value.indexOf("@", 0) < 0)
	{
	    window.alert("Please enter a valid E-mail address.");
	    frm.E_Mail.focus();
	    return false;
	}
	else if (frm.E_Mail.value.indexOf(".", 0) < 0)
	{
	    window.alert("Please Enter a valid E-mail address.");
	    frm.E_Mail.focus();
	    return false;
	}
	else if(!(frm.E_Mail.value.match(emailexp)))
	{
	    window.alert("Please Enter Valid Email ID:");
	    frm.E_Mail.focus();
	    return false;
	}
	else if (validate_email(frm.E_Mail)==false)
	    {
	    frm.E_Mail.focus();
	    return false;
	    }
	else if (frm.Phone_Number.value == "")
	{
	    window.alert("Please Enter Your Phone_Number");
	    frm.Phone_Number.focus();
		return false;
	}
	else if(!(frm.Phone_Number.value.match(numexp)))
	{
	    window.alert("Please Enter Valid Phone_Number");
	    frm.E_Mail.focus();
	    return false;
	}
	else
	{
		alert('All OK');
	return true;
	}	
	}
</script>

<form name="enquiry_form" method="post" action=""> 
<input type="hidden" name="recipient" value="articles@quickbeamllc.com" id="formRecipient">
<input type="hidden" name="contact_form_submitted" value="1"> 
<table border="0">
<tr>
  <td align="left">Company Name</td> 
  <td align="left"><input type="text" name="Company_Name"></td> 
</tr> 
<tr> 
  <td align="left">First Name <font color="#ff0000"><b>*</b></font></td> 
  <td align="left"><input type="text" name="First_Name"></td> 
</tr> 
<tr> 
  <td align="left">Last Name <font color="#ff0000"><b>*</b></font></td> 
  <td align="left"><input type="text" name="Last_Name"></td> 
</tr> 
<tr> 
  <td align="left">E-Mail <font color="#ff0000"><b>*</b></font></td> 
  <td align="left"><input type="text" name="E_Mail" value=""></td> 
</tr> 
<tr> 
  <td align="left">Phone Number <font color="#ff0000"><b>*</b></font></td> 
  <td align="left"><input type="text" name="Phone_Number"></td> 
</tr> 
<tr> 
  <td align="left">Address</td> 
  <td align="left"><input type="text" name="Address"></td> 
</tr> 
<tr> 
  <td align="left">Suburb / City</td> 
  <td align="left"><input type="text" name="Suburb___City"></td> 
</tr> 
<tr> 
  <td align="left">State</td> 
  <td align="left"><input type="text" name="State"></td> 
</tr> 
<tr> 
  <td align="left">Postal Code</td> 
  <td align="left"><input type="text" name="Postal_Code"></td> 
</tr> 
<tr> 
  <td align="left" colspan="2">A description of Accounting Services needed</td> 
</tr> 
<tr> 
  <td align="left" colspan="2"><textarea name="desc" cols="40" rows="6"></textarea></td> 
</tr> 
<tr> 
  <td align="left">Company Type</td> 
  <td align="left"> 
    <input type="checkbox" name="Sole Trader" value="Sole_Trader"> Sole Trader 
    <input type="checkbox" name="Partnership" value="Partnership"> Partnership 
    <input type="checkbox" name="Company" value="Company"> Company 
    <input type="checkbox" name="Company_Other" value="Other"> Other 
  </td> 
</tr> 
<tr> 
  <td align="left">Business Type</td> 
  <td align="left"> 
    <input type="checkbox" name="Service" value="Service"> Service 
    <input type="checkbox" name="Retail" value="Retail"> Retail 
    <input type="checkbox" name="Wholesale" value="Wholesale"> Wholesale 
    <input type="checkbox" name="Biz_Other" value="Other"> Other 
  </td> 
</tr> 
<tr> 
  <td align="left">Registered for BAS</td> 
  <td align="left"> 
    <input type="checkbox" name="BAS_Yes" value="Yes"> Yes 
    <input type="checkbox" name="BAS_No" value="No"> No 
  </td> 
</tr> 
<tr> 
  <td align="left">Current Software</td> 
  <td align="left"> 
    <input type="checkbox" name="MYOB" value="MYOB"> MYOB 
    <input type="checkbox" name="Xero" value="Xero"> Xero 
    <input type="checkbox" name="QuickBooks" value="QuickBooks"> QuickBooks 
    <input type="checkbox" name="Software_Other" value="Other"> Other 
  </td> 
</tr> 
<tr> 
  <td align="left">No. of Employees</td> 
  <td align="left"> 
    <input type="checkbox" name="Five" value="Yes"> 1-5 
    <input type="checkbox" name="Ten" value="Yes"> 6-10 
    <input type="checkbox" name="Ten_Plus" value="Yes"> 10+ 
    <input type="checkbox" name="Zero" value="Yes"> No employees 
  </td> 
</tr> 
<tr> 
  <td align="left"><input type="submit" onClick="return check_form();" value="Send"></td> 
</tr> 
</table> 
</form>
 ]]></content:encoded>
			<wfw:commentRss>http://demo.chimerathemes.com/conversion/2011/04/11/495/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Conversion is a New WordPress Theme</title>
		<link>http://demo.chimerathemes.com/conversion/2011/03/30/conversion-releas/</link>
		<comments>http://demo.chimerathemes.com/conversion/2011/03/30/conversion-releas/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 17:48:14 +0000</pubDate>
		<dc:creator>freeside</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Conversion Stories]]></category>
		<category><![CDATA[buttons]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[shortcodes]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://demo.chimerathemes.com/conversion/?p=1</guid>
		<description><![CDATA[Conversion is our latest theme that includes a really cool looking slider, content boxes, widgets for your sidebar and footer and blog posts with fancybox image display.]]></description>
				<content:encoded><![CDATA[Conversion is our latest theme that includes a really cool looking slider, content boxes, widgets for your sidebar and footer and blog posts with fancybox image display. ]]></content:encoded>
			<wfw:commentRss>http://demo.chimerathemes.com/conversion/2011/03/30/conversion-releas/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Testimonials Mean Nothing&#8230; Conversion Stories are Everything</title>
		<link>http://demo.chimerathemes.com/conversion/2011/03/30/conversion-stories/</link>
		<comments>http://demo.chimerathemes.com/conversion/2011/03/30/conversion-stories/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 13:42:41 +0000</pubDate>
		<dc:creator>freeside</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Conversion Stories]]></category>
		<category><![CDATA[blog post]]></category>
		<category><![CDATA[conversion stories]]></category>
		<category><![CDATA[gravatar]]></category>
		<category><![CDATA[testimonial box]]></category>
		<category><![CDATA[testimonials]]></category>

		<guid isPermaLink="false">http://ktc15.ktree.org/?p=1</guid>
		<description><![CDATA[Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industryâ€™s standard dummy text ever since the 1500s,Lorem Ipsum]]></description>
				<content:encoded><![CDATA[Testimonials are dead.  When your visitors see the word testimonial on a site and they just gloss over it like an advertisement they&#8217;ve seen hundreds of times.  Give your visitors a reason to read about what your clients think about you by giving them conversion stories.  Conversion stories show how a client has benefited in such a great way as to have had a life-changing, profit-increasing or money-saving experience by doing business with you.  That&#8217;s what speaks to a skeptical website visitor and that&#8217;s what will win them over to become a loyal client. ]]></content:encoded>
			<wfw:commentRss>http://demo.chimerathemes.com/conversion/2011/03/30/conversion-stories/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create Your Own Butterfly Effect with Conversion</title>
		<link>http://demo.chimerathemes.com/conversion/2011/03/30/butterfly-effect/</link>
		<comments>http://demo.chimerathemes.com/conversion/2011/03/30/butterfly-effect/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 08:02:26 +0000</pubDate>
		<dc:creator>freeside</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Conversion Stories]]></category>
		<category><![CDATA[marketing firm theme]]></category>
		<category><![CDATA[referral marketing]]></category>
		<category><![CDATA[seo theme]]></category>

		<guid isPermaLink="false">http://ktc15.ktree.org/?p=9</guid>
		<description><![CDATA[Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industryâ€™s standard dummy text ever since the 1500s,Lorem Ipsum]]></description>
				<content:encoded><![CDATA[Converting a visitor into a loyal client that refers their friends and relatives is easy if you make a good first impression.  Conversion gives you the theme for such a website.  Your visitors will care about what you have to show them only once you&#8217;ve shown them that you care about them.  Beautiful slider images and sleek buttons in our latest theme, Conversion will do that for you. ]]></content:encoded>
			<wfw:commentRss>http://demo.chimerathemes.com/conversion/2011/03/30/butterfly-effect/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Its all About the Conversion</title>
		<link>http://demo.chimerathemes.com/conversion/2011/03/30/all-about-conversion/</link>
		<comments>http://demo.chimerathemes.com/conversion/2011/03/30/all-about-conversion/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 07:57:27 +0000</pubDate>
		<dc:creator>freeside</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Conversion Stories]]></category>
		<category><![CDATA[client conversion]]></category>
		<category><![CDATA[converting prospects]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[sales]]></category>

		<guid isPermaLink="false">http://ktc15.ktree.org/?p=5</guid>
		<description><![CDATA[Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industryâ€™s standard dummy text ever since the 1500s,Lorem Ipsum]]></description>
				<content:encoded><![CDATA[Website visitors will only stay on your page for about 2-3 seconds if they don&#8217;t see something that directly applies to them immediately.  If you want to convert at a high ratio, then you will need to figure out what is the greatest benefit you can offer to a client and then represent that graphically and with words.  It must be a clear message and it must speak volumes with very few words. ]]></content:encoded>
			<wfw:commentRss>http://demo.chimerathemes.com/conversion/2011/03/30/all-about-conversion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
