
<script language="javascript">
function isEmail(emailAddress){
emailAddressValue=emailAddress.value.toLowerCase();
var countryTLDs=/^(ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cat|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cu|cv|cx|cy|cz|de|dj|dk|dm|do|dz|ec|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|st|sv|sy|sz|tc|td|tf|tg|th|tj|tk|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|um|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|yu|za|zm|zw)$/;
var gTLDs=/^(aero|asia|biz|cat|com|coop|edu|geo|gov|info|int|jobs|mil|mobi|museum|name|net|org|post|pro|tel|travel)$/;
var basicAddress=/^(.+)@(.+)$/;
var specialChars='\\(\\)><@,;:\\\\\\\"\\.\\[\\]';
var validChars='\[^\\s'+specialChars+'\]';
var validCharset='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzöå0123456789\'-_.+';
var quotedUser='(\"[^\"]*\")';
var atom=validChars+'+';
var word='('+atom+'|'+quotedUser+')';
var validUser=new RegExp('^'+word+'(\.'+word+')*$');
var symDomain=new RegExp('^'+atom+'(\.'+atom+')*$');
var matchArray=emailAddressValue.match(basicAddress);
if(emailAddress.value==''||emailAddress==null){
return true;
}
if(matchArray==null){
alert('The Email address doesn\'t seem to be correct,\nplease check syntax.');
emailAddress.focus();
return false;
}else{
var user=matchArray[1];
var domain=matchArray[2];
for(i=0;i<user.length;i++){
if(validCharset.indexOf(user.charAt(i))==-1){
alert('The Email address contains invalid characters,\nplease check the username.');
emailAddress.focus();
return false;
}
}
for(i=0;i<domain.length;i++){
if(validCharset.indexOf(domain.charAt(i))==-1){
alert('The Email address contains invalid characters,\nplease check the domain.');
emailAddress.focus();
return false;
}
}
if(user.match(validUser)==null){
alert('The Email address doesn\'t seem to be correct,\nplease check the username.');
emailAddress.focus();
return false;
}
var atomPat=new RegExp('^'+atom+'$');
var domArr=domain.split('.');
var len=domArr.length;
for(i=0;i<len;i++){
if(domArr[i].search(atomPat)==-1){
alert('The Email address doesn\'t seem to be correct,\nplease check the domain name.');
emailAddress.focus();
return false;
}
}
if((domArr[domArr.length-1].length==2)&&(domArr[domArr.length-1].search(countryTLDs)==-1)){
alert('The Email address doesn\'t seem to be correct,\nplease check domain suffix.');
emailAddress.focus();
return false;
}
if((domArr[domArr.length-1].length>2)&&(domArr[domArr.length-1].search(gTLDs)==-1)){
alert('The Email address doesn\'t seem to be correct,\nplease check domain suffix.');
emailAddress.focus();
return false;
}
if((domArr[domArr.length-1].length<2)||(domArr[domArr.length-1].length>6)){
alert('The Email address doesn\'t seem to be correct,\nplease check domain suffix.');
emailAddress.focus();
return false;
}
if(len<2){
alert('The Email address doesn\'t seem to be correct,\nplease check missing hostname.');
emailAddress.focus();
return false;
}
}
return true;
}
String.prototype.trim = function() { return this.replace(/^\s*(\b.*\b|)\s*$/, "$1");	}
function mandatoryText(input,fieldName){
if(input.value.trim()==''||input==null){
alert('Please enter your '+fieldName+'.');
input.focus();
return false;
} else {
return true;
}
}
function validForm(){
if(!mandatoryText(document.getElementById('EMAIL_FIELD'), 'Email Address:')) return;
if(!isEmail(document.getElementById('EMAIL_FIELD'))) return;
document.getElementById('emvForm').submit();
}
</script>

<?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>Chris Higgins &#187; Uncategorized</title>
	<atom:link href="http://www.chrishigginsthatsme.com/category/uncategorized/feed" rel="self" type="application/rss+xml" />
	<link>http://www.chrishigginsthatsme.com</link>
	<description>thats me</description>
	<lastBuildDate>Sun, 05 Feb 2012 12:12:05 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>World Book Week</title>
		<link>http://www.chrishigginsthatsme.com/world-book-week</link>
		<comments>http://www.chrishigginsthatsme.com/world-book-week#comments</comments>
		<pubDate>Sun, 05 Feb 2012 12:12:05 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=286</guid>
		<description><![CDATA[World Book Week coming soon.Can&#8217;t wait to meet up with the students from Hillview School for Girls, Fowey Community College &#8230; <a href="http://www.chrishigginsthatsme.com/world-book-week">click here to read more</a>.]]></description>
			<content:encoded><![CDATA[<p>World Book Week coming soon.Can&#8217;t wait to meet up with the students from Hillview School for Girls, Fowey Community College and Truro High. Lots of new writing to share with you. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrishigginsthatsme.com/world-book-week/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Winter Magic</title>
		<link>http://www.chrishigginsthatsme.com/winter-magic</link>
		<comments>http://www.chrishigginsthatsme.com/winter-magic#comments</comments>
		<pubDate>Fri, 03 Feb 2012 20:27:14 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=285</guid>
		<description><![CDATA[Every writer needs some winter magic. Today I found some. At Sennen today there was ice on the beach. I&#8217;ve &#8230; <a href="http://www.chrishigginsthatsme.com/winter-magic">click here to read more</a>.]]></description>
			<content:encoded><![CDATA[<p>Every writer needs some winter magic. Today I found some. At Sennen today there was ice on the beach. I&#8217;ve never seen that before. But the sun was so hot I had to take my coat off and lie down and sunbathe. How could that happen?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrishigginsthatsme.com/winter-magic/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New YA Book</title>
		<link>http://www.chrishigginsthatsme.com/new-ya-book</link>
		<comments>http://www.chrishigginsthatsme.com/new-ya-book#comments</comments>
		<pubDate>Tue, 31 Jan 2012 17:54:21 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=284</guid>
		<description><![CDATA[At 5.42 pecisely on the 31st January I finished writing my new YA book. And I love it!
]]></description>
			<content:encoded><![CDATA[<p>At 5.42 pecisely on the 31st January I finished writing my new YA book. And I love it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrishigginsthatsme.com/new-ya-book/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Illustrations</title>
		<link>http://www.chrishigginsthatsme.com/illustrations</link>
		<comments>http://www.chrishigginsthatsme.com/illustrations#comments</comments>
		<pubDate>Wed, 25 Jan 2012 14:58:51 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=283</guid>
		<description><![CDATA[I&#8217;ve just been choosing which scenes I want illustrating for my new book, &#8220;My Funny Family&#8221;. This is such fun, &#8230; <a href="http://www.chrishigginsthatsme.com/illustrations">click here to read more</a>.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just been choosing which scenes I want illustrating for my new book, &#8220;My Funny Family&#8221;. This is such fun, I&#8217;ve never had an illustrator before. I can&#8217;t wait to see what they&#8217;re like.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrishigginsthatsme.com/illustrations/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New competition</title>
		<link>http://www.chrishigginsthatsme.com/new-competition-2</link>
		<comments>http://www.chrishigginsthatsme.com/new-competition-2#comments</comments>
		<pubDate>Tue, 24 Jan 2012 17:39:43 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=281</guid>
		<description><![CDATA[Hi guys,
A new competition will be going up tomorrow &#8211; look out for it!
]]></description>
			<content:encoded><![CDATA[<p>Hi guys,</p>
<p>A new competition will be going up tomorrow &#8211; look out for it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrishigginsthatsme.com/new-competition-2/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A radio interview to find out more about me</title>
		<link>http://www.chrishigginsthatsme.com/a-radio-interview-to-find-out-more-about-me</link>
		<comments>http://www.chrishigginsthatsme.com/a-radio-interview-to-find-out-more-about-me#comments</comments>
		<pubDate>Sat, 21 Jan 2012 16:38:13 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=280</guid>
		<description><![CDATA[Chris radio interview
]]></description>
			<content:encoded><![CDATA[<p><a href='http://youtu.be/S2ybBqtMFy4' >Chris radio interview</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrishigginsthatsme.com/a-radio-interview-to-find-out-more-about-me/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chatting</title>
		<link>http://www.chrishigginsthatsme.com/chatting</link>
		<comments>http://www.chrishigginsthatsme.com/chatting#comments</comments>
		<pubDate>Wed, 11 Jan 2012 13:14:20 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=279</guid>
		<description><![CDATA[So glad lots of you are catching up with me on my Facebook Author page. Don&#8217;t forget to join in &#8230; <a href="http://www.chrishigginsthatsme.com/chatting">click here to read more</a>.]]></description>
			<content:encoded><![CDATA[<p>So glad lots of you are catching up with me on my Facebook Author page. Don&#8217;t forget to join in the forum on this website too. I love to hear your views and like to take part too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrishigginsthatsme.com/chatting/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New book!</title>
		<link>http://www.chrishigginsthatsme.com/new-book-2</link>
		<comments>http://www.chrishigginsthatsme.com/new-book-2#comments</comments>
		<pubDate>Sat, 07 Jan 2012 08:24:23 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=276</guid>
		<description><![CDATA[Sneak preview of my brand new book coming out this summer. It&#8217;s illustrated by the amazing Lee Wildish and it &#8230; <a href="http://www.chrishigginsthatsme.com/new-book-2">click here to read more</a>.]]></description>
			<content:encoded><![CDATA[<p>Sneak preview of my brand new book coming out this summer. It&#8217;s illustrated by the amazing Lee Wildish and it will be perfect for your younger brothers and sisters (And you too, of course!)<object width="400" height="300"><param name="flashvars" value="offsite=true&#038;lang=en-us&#038;page_show_url=%2Fphotos%2F47462737%40N04%2Fsets%2F72157628748281429%2Fshow%2F&#038;page_show_back_url=%2Fphotos%2F47462737%40N04%2Fsets%2F72157628748281429%2F&#038;set_id=72157628748281429&#038;jump_to="></param><param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=109615"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/slideshow/show.swf?v=109615" allowFullScreen="true" flashvars="offsite=true&#038;lang=en-us&#038;page_show_url=%2Fphotos%2F47462737%40N04%2Fsets%2F72157628748281429%2Fshow%2F&#038;page_show_back_url=%2Fphotos%2F47462737%40N04%2Fsets%2F72157628748281429%2F&#038;set_id=72157628748281429&#038;jump_to=" width="400" height="300"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrishigginsthatsme.com/new-book-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy New Year!</title>
		<link>http://www.chrishigginsthatsme.com/happy-new-year-2</link>
		<comments>http://www.chrishigginsthatsme.com/happy-new-year-2#comments</comments>
		<pubDate>Tue, 03 Jan 2012 18:45:10 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=274</guid>
		<description><![CDATA[Happy New Year to all my fans. Did you make any new year resolutions? I did, 14 of them! I&#8217;ve &#8230; <a href="http://www.chrishigginsthatsme.com/happy-new-year-2">click here to read more</a>.]]></description>
			<content:encoded><![CDATA[<p>Happy New Year to all my fans. Did you make any new year resolutions? I did, 14 of them! I&#8217;ve already broken about 10 of them but one was to create an Author&#8217;s page on Facebook and I have done that at long last. The trouble is I&#8217;m so busy posting stuff on the wall and updating my website I don&#8217;t seem to have much time left to write. But there&#8217;s always tomorrow&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrishigginsthatsme.com/happy-new-year-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Birthday!</title>
		<link>http://www.chrishigginsthatsme.com/happy-birthday</link>
		<comments>http://www.chrishigginsthatsme.com/happy-birthday#comments</comments>
		<pubDate>Fri, 30 Dec 2011 17:50:24 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=273</guid>
		<description><![CDATA[Promised Amy-Anne Williams I would wish her a happy birthday on my website so here it is. Happy 13th birthday &#8230; <a href="http://www.chrishigginsthatsme.com/happy-birthday">click here to read more</a>.]]></description>
			<content:encoded><![CDATA[<p>Promised Amy-Anne Williams I would wish her a happy birthday on my website so here it is. Happy 13th birthday for the 29th December Amy-Anne, No 1 fan! Don&#8217;t forget to join my new Facebook Author page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrishigginsthatsme.com/happy-birthday/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

