<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Virtue Design</title>
	
	<link>http://virtuedesign.net/demo1</link>
	<description />
	<lastBuildDate>Sat, 24 Jul 2010 01:09:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/VirtueDesign" /><feedburner:info uri="virtuedesign" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>test</title>
		<link>http://virtuedesign.net/demo1/?p=906</link>
		<comments>http://virtuedesign.net/demo1/?p=906#comments</comments>
		<pubDate>Sat, 24 Jul 2010 01:09:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://virtuedesign.net/demo1/?p=906</guid>
		<description><![CDATA[<p align='center'><b>Event Registration for Logo Design Givaway</b></p><table width='100%'><td><td span='2'>Virtue Design is giving away a Company Logo Design to one luck contest Contest is open to all persons who are 18 years of age or older. Only one internet entry per person and one internet entry per email address is permitted. From all eligible entries received, Virtue Design will select 1 winner at random. The decision of Virtue Design is final in all matters. Winners will be notified by email on or about October 10, 2010 and must reply with all contact information requested in the notification </td></table><table width='500'><td><SCRIPT>



function echeck(str) {
		var at="@"
		var dot="."
		var em = ""
		var lat=str.indexOf(at)
		var lstr=str.length
		var ldot=str.indexOf(dot)
		if (str.indexOf(at)==-1){
		    return false;
		    }

		if (str.indexOf(at)==-1 || str.indexOf(at)==0 || str.indexOf(at)==lstr){
		    return false;
		    
		}

		if (str.indexOf(dot)==-1 || str.indexOf(dot)==0 || str.indexOf(dot)==lstr){
		     return false;
		}

		 if (str.indexOf(at,(lat+1))!=-1){
		      return false;
		 }

		 if (str.substring(lat-1,lat)==dot || str.substring(lat+1,lat+2)==dot){
		     return false;
		 }

		 if (str.indexOf(dot,(lat+2))==-1){
		    return false;
		 }
		
		 if (str.indexOf(" ")!=-1){
		    return false;
		 }

 		 return true;					
}


function validateForm(form) { 
	
var msg = "";

if (form.fname.value == "") {  msg += "\n " +"Please enter your first name."; 
   		form.fname.focus( ); 
   	 }
if (form.lname.value == "") {  msg += "\n " +"Please enter your last name."; 
   		form.lname.focus( ); 
   		}
	
if (echeck(form.email.value)==false){
		msg += "\n " + "Email format not correct!";
		}
		
if (form.phone.value == "") {  msg += "\n " +"Please enter your phone number."; 
   		form.phone.focus( ); 
   		}
if (form.address.value == "") {  msg += "\n " +"Please enter your address."; 
   		form.address.focus( ); 
   		}
if (form.city.value == "") {  msg += "\n " +"Please enter your city."; 
   		form.city.focus( ); 
   		}  
 
if (form.state.value == "") { msg += "\n " + "Please enter your state."; 
   		form.state.focus( ); 
   	 }
if (form.zip.value == "") {  msg += "\n " +"Please enter your zip code."; 
   		form.zip.focus( ); 
   		 }
    
//Validate Extra Questions
function trim(s) {if (s) {return s.replace(/^\s*|\s*$/g,"");} return null;}
				
	var inputs = form.getElementsByTagName("input");
	var e;

//Start Extra Questions Check
	for( var i = 0, e; e = inputs[i]; i++ )
	{
		var value = e.value ? trim(e.value) : null;
	
		if (e.type == "text" && e.title && !value && e.className == "r")
		{msg += "\n " + e.title;}
		
	
	if ((e.type == "radio" || e.type == "checkbox") && e.className == "r") {
				var rd =""
				var controls = form.elements;
				function getSelectedControl(group) 
					{
					for (var i = 0, n = group.length; i < n; ++i)
						if (group[i].checked) return group[i];
						return null;
					}
				if (!getSelectedControl(controls[e.name]))
								{msg += "\n " + e.title;}
			} 
			

	}

	var inputs = form.getElementsByTagName("textarea");
	var e;
	
	//Start Extra TextArea Questions Check
	for( var i = 0, e; e = inputs[i]; i++ )
	{
		var value = e.value ? trim(e.value) : null;
		if (!value && e.className == "r")
		{msg += "\n " + e.title;}
	}
	var inputs = form.getElementsByTagName("select");
	var e;
	
	//Start Extra TextArea Questions Check
	for( var i = 0, e; e = inputs[i]; i++ )
	{
		var value = e.value ? trim(e.value) : null;
		if ((!value || value =='') && e.className == "r")
		{msg += "\n " + e.title;}
	}

if (msg.length > 0) {
			msg = "The following fields need to be completed before you can submit.\n\n" + msg;
			alert(msg);
			return false;
		}
	
	return true;   

}



</SCRIPT>

</td>
<tr>
	<td>
	<form method="post"
		action="/demo1/?feed=rss2"
		onSubmit="return validateForm(this)">
	<p align="left"><b>First Name: <br />
	<input tabIndex="1" maxLength="40" size="47" name="fname"></b></p>
	<p align="left"><b>Last Name:<br />
	<input tabIndex="2" maxLength="40" size="47" name="lname"></b></p>
	<p align="left"><b>E-Mail:<br />
	<input tabIndex="3" maxLength="40" size="47" name="email"></b></p>
	<p align="left"><b>Phone:<br />
	<input tabIndex="4" maxLength="20" size="25" name="phone"></b></p>
	<p align="left"><b>Street:<br />
	<input tabIndex="5" maxLength="35" size="49" name="address"></b></p>
	<p align="left"><b>City:<br />
	<input tabIndex="6" maxLength="25" size="35" name="city"> </b></p>
<p align="left"><b>State or province:<br />
	<input tabIndex="7" maxLength="20" size="18" name="state"></b></p>
 	
	<p align="left"><b>Zip:<br />
	<input tabIndex="8" maxLength="10" size="15" name="zip"></b></p>
			
			
<p align="left"><b>	Additional attendees?
      <select name="num_people" style="width:70px;margin-top:4px">
        <option value="1" selected>None</option>
        <option value="2">1</option>
        <option value="3">2</option>
        <option value="4">3</option>
        <option value="5">4</option>
        <option value="6">5</option>
      </select>		
      </b></p>
      
      

		<input type="hidden" name="regevent_action" value="post_attendee"> <input
		type="hidden" name="event_id" value="1">
	<p align="center"><input type="submit" name="Submit" value="Submit"> <font
		color="#FF0000"><b>(Only click the Submit Button Once)</b></font>
	
	</form>
	</td>
</tr>
</table>
</body>
]]></description>
			<content:encoded><![CDATA[<p align='center'><b>Event Registration for Logo Design Givaway</b></p><table width='100%'><td><td span='2'>Virtue Design is giving away a Company Logo Design to one luck contest Contest is open to all persons who are 18 years of age or older. Only one internet entry per person and one internet entry per email address is permitted. From all eligible entries received, Virtue Design will select 1 winner at random. The decision of Virtue Design is final in all matters. Winners will be notified by email on or about October 10, 2010 and must reply with all contact information requested in the notification </td></table><table width='500'><td><SCRIPT>



function echeck(str) {
		var at="@"
		var dot="."
		var em = ""
		var lat=str.indexOf(at)
		var lstr=str.length
		var ldot=str.indexOf(dot)
		if (str.indexOf(at)==-1){
		    return false;
		    }

		if (str.indexOf(at)==-1 || str.indexOf(at)==0 || str.indexOf(at)==lstr){
		    return false;
		    
		}

		if (str.indexOf(dot)==-1 || str.indexOf(dot)==0 || str.indexOf(dot)==lstr){
		     return false;
		}

		 if (str.indexOf(at,(lat+1))!=-1){
		      return false;
		 }

		 if (str.substring(lat-1,lat)==dot || str.substring(lat+1,lat+2)==dot){
		     return false;
		 }

		 if (str.indexOf(dot,(lat+2))==-1){
		    return false;
		 }
		
		 if (str.indexOf(" ")!=-1){
		    return false;
		 }

 		 return true;					
}


function validateForm(form) { 
	
var msg = "";

if (form.fname.value == "") {  msg += "\n " +"Please enter your first name."; 
   		form.fname.focus( ); 
   	 }
if (form.lname.value == "") {  msg += "\n " +"Please enter your last name."; 
   		form.lname.focus( ); 
   		}
	
if (echeck(form.email.value)==false){
		msg += "\n " + "Email format not correct!";
		}
		
if (form.phone.value == "") {  msg += "\n " +"Please enter your phone number."; 
   		form.phone.focus( ); 
   		}
if (form.address.value == "") {  msg += "\n " +"Please enter your address."; 
   		form.address.focus( ); 
   		}
if (form.city.value == "") {  msg += "\n " +"Please enter your city."; 
   		form.city.focus( ); 
   		}  
 
if (form.state.value == "") { msg += "\n " + "Please enter your state."; 
   		form.state.focus( ); 
   	 }
if (form.zip.value == "") {  msg += "\n " +"Please enter your zip code."; 
   		form.zip.focus( ); 
   		 }
    
//Validate Extra Questions
function trim(s) {if (s) {return s.replace(/^\s*|\s*$/g,"");} return null;}
				
	var inputs = form.getElementsByTagName("input");
	var e;

//Start Extra Questions Check
	for( var i = 0, e; e = inputs[i]; i++ )
	{
		var value = e.value ? trim(e.value) : null;
	
		if (e.type == "text" && e.title && !value && e.className == "r")
		{msg += "\n " + e.title;}
		
	
	if ((e.type == "radio" || e.type == "checkbox") && e.className == "r") {
				var rd =""
				var controls = form.elements;
				function getSelectedControl(group) 
					{
					for (var i = 0, n = group.length; i < n; ++i)
						if (group[i].checked) return group[i];
						return null;
					}
				if (!getSelectedControl(controls[e.name]))
								{msg += "\n " + e.title;}
			} 
			

	}

	var inputs = form.getElementsByTagName("textarea");
	var e;
	
	//Start Extra TextArea Questions Check
	for( var i = 0, e; e = inputs[i]; i++ )
	{
		var value = e.value ? trim(e.value) : null;
		if (!value && e.className == "r")
		{msg += "\n " + e.title;}
	}
	var inputs = form.getElementsByTagName("select");
	var e;
	
	//Start Extra TextArea Questions Check
	for( var i = 0, e; e = inputs[i]; i++ )
	{
		var value = e.value ? trim(e.value) : null;
		if ((!value || value =='') && e.className == "r")
		{msg += "\n " + e.title;}
	}

if (msg.length > 0) {
			msg = "The following fields need to be completed before you can submit.\n\n" + msg;
			alert(msg);
			return false;
		}
	
	return true;   

}



</SCRIPT>

</td>
<tr>
	<td>
	<form method="post"
		action="/demo1/?feed=rss2"
		onSubmit="return validateForm(this)">
	<p align="left"><b>First Name: <br />
	<input tabIndex="1" maxLength="40" size="47" name="fname"></b></p>
	<p align="left"><b>Last Name:<br />
	<input tabIndex="2" maxLength="40" size="47" name="lname"></b></p>
	<p align="left"><b>E-Mail:<br />
	<input tabIndex="3" maxLength="40" size="47" name="email"></b></p>
	<p align="left"><b>Phone:<br />
	<input tabIndex="4" maxLength="20" size="25" name="phone"></b></p>
	<p align="left"><b>Street:<br />
	<input tabIndex="5" maxLength="35" size="49" name="address"></b></p>
	<p align="left"><b>City:<br />
	<input tabIndex="6" maxLength="25" size="35" name="city"> </b></p>
<p align="left"><b>State or province:<br />
	<input tabIndex="7" maxLength="20" size="18" name="state"></b></p>
 	
	<p align="left"><b>Zip:<br />
	<input tabIndex="8" maxLength="10" size="15" name="zip"></b></p>
			
			
<p align="left"><b>	Additional attendees?
      <select name="num_people" style="width:70px;margin-top:4px">
        <option value="1" selected>None</option>
        <option value="2">1</option>
        <option value="3">2</option>
        <option value="4">3</option>
        <option value="5">4</option>
        <option value="6">5</option>
      </select>		
      </b></p>
      
      

		<input type="hidden" name="regevent_action" value="post_attendee"> <input
		type="hidden" name="event_id" value="1">
	<p align="center"><input type="submit" name="Submit" value="Submit"> <font
		color="#FF0000"><b>(Only click the Submit Button Once)</b></font>
	
	</form>
	</td>
</tr>
</table>
</body>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://virtuedesign.net/demo1/?feed=rss2&amp;p=906</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Layout With Order of 1000 Business Cards</title>
		<link>http://virtuedesign.net/demo1/?p=880</link>
		<comments>http://virtuedesign.net/demo1/?p=880#comments</comments>
		<pubDate>Thu, 22 Jul 2010 16:10:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured Posts]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://virtuedesign.net/demo1/?p=880</guid>
		<description><![CDATA[Receive a Free business card layout design ( A $100.00 Value ) when you have Virtue Design handle your business card needs. This offer applys on all orders from 1,000 to 100,000 cards. Contact us today with promo code &#8220;BusCard1000&#8243; in your message along with any necessary contact information and we will get back to&#8230;]]></description>
			<content:encoded><![CDATA[<p>Receive a Free business card layout design ( A $100.00 Value ) when you have Virtue Design handle your business card needs. This offer applys on all orders from 1,000 to 100,000 cards.</p>
<p><a href="?page_id=14">Contact us today</a> with promo code &#8220;BusCard1000&#8243; in your message along with any necessary contact information and we will get back to you promptly.</p>
<p>*Free layout is for any order of 1000 business cards or more. Also included is one free layout revision. Additional revisions will come at a cost of $100 Clients must supply all business card graphics, logos, or images.</p>
]]></content:encoded>
			<wfw:commentRss>http://virtuedesign.net/demo1/?feed=rss2&amp;p=880</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Listen Meeting</title>
		<link>http://virtuedesign.net/demo1/?p=867</link>
		<comments>http://virtuedesign.net/demo1/?p=867#comments</comments>
		<pubDate>Thu, 22 Jul 2010 15:09:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured Posts]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://virtuedesign.net/demo1/?p=867</guid>
		<description><![CDATA[What is a Listen Meeting? Our listen meeting is the first step in our 7 stage client process. Here is where we sit down with you, the client to gain better insight about your company. The goal of this meeting is to do exactly what the title says&#8230;we listen. I once heard a wise man&#8230;]]></description>
			<content:encoded><![CDATA[<h2>What is a Listen Meeting?</h2>
<p>Our listen meeting is the first step in our 7 stage client process. Here is where we sit down with you, the client to gain better insight about your company. The goal of this meeting is to do exactly what the title says&#8230;we listen. I once heard a wise man say, “ You can’t listen with your mouth open.” So we ask a few targeted questions designed to help you express the core of your company. That will help us understand why you created your business, what it means to you and the values that you would like it to be known for. We start with listening because without the proper knowledge, we wouldn’t be able to capture your company’s essence in our design stage.</p>
<p><a href="?page_id=14">Contact us today</a> with promo code &#8220;LisMeet08&#8243; in your message along with any necessary contact information and we will get back to you promptly.</p>
]]></content:encoded>
			<wfw:commentRss>http://virtuedesign.net/demo1/?feed=rss2&amp;p=867</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAVE up to 15% Off Your First Print Order!</title>
		<link>http://virtuedesign.net/demo1/?p=658</link>
		<comments>http://virtuedesign.net/demo1/?p=658#comments</comments>
		<pubDate>Mon, 19 Jul 2010 22:13:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured Posts]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://virtuedesign.net/demo1/?p=658</guid>
		<description><![CDATA[For a limited time only Virtue Design is offering 15% off your first print order. Whether you need booklets, manuals, business cards, brochures, sell sheets, flyers, or postcards, we are here to meet your printing needs. Contact us today with promo code &#8220;15%prnt&#8221; in your message along with any necessary contact information and see the&#8230;]]></description>
			<content:encoded><![CDATA[<div class="alignleft big_shadow_border">  <img src="wp-content/uploads/2010/07/printing.jpg" alt="" class="border light_border neutral_outline" /> </div>
<p>For a limited time only Virtue Design is offering 15% off your first print order. Whether you need booklets, manuals, business cards, brochures, sell sheets, flyers, or postcards, we are here to meet your printing needs.</p>
<p> <a href="?page_id=14">Contact us today</a> with promo code &#8220;15%prnt&#8221; in your message along with any necessary contact information and see the difference that Virtue Design printing has to offer.</p>
]]></content:encoded>
			<wfw:commentRss>http://virtuedesign.net/demo1/?feed=rss2&amp;p=658</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

