
<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; Events</title>
	<atom:link href="http://www.chrishigginsthatsme.com/category/events/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>Thanks to&#8230;</title>
		<link>http://www.chrishigginsthatsme.com/thanks-to</link>
		<comments>http://www.chrishigginsthatsme.com/thanks-to#comments</comments>
		<pubDate>Sat, 07 Jan 2012 15:33:01 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=278</guid>
		<description><![CDATA[Those schools I visited at the close of 2011, especially the girls at Jags in London and the great people &#8230; <a href="http://www.chrishigginsthatsme.com/thanks-to">click here to read more</a>.]]></description>
			<content:encoded><![CDATA[<p>Those schools I visited at the close of 2011, especially the girls at Jags in London and the great people I met in Newcastle and Gateshead. Always love coming up north&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrishigginsthatsme.com/thanks-to/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tolcarne</title>
		<link>http://www.chrishigginsthatsme.com/tolcarne</link>
		<comments>http://www.chrishigginsthatsme.com/tolcarne#comments</comments>
		<pubDate>Fri, 23 Sep 2011 18:21:41 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=247</guid>
		<description><![CDATA[Literary lunches in pubs are the best! Thanks for asking me Tolcarne!
]]></description>
			<content:encoded><![CDATA[<p>Literary lunches in pubs are the best! Thanks for asking me Tolcarne!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrishigginsthatsme.com/tolcarne/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mounts Bay School</title>
		<link>http://www.chrishigginsthatsme.com/mounts-bay-school-3</link>
		<comments>http://www.chrishigginsthatsme.com/mounts-bay-school-3#comments</comments>
		<pubDate>Thu, 01 Sep 2011 14:29:52 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=239</guid>
		<description><![CDATA[Good to meet the new Yr 7 intake at Mounts Bay School today, especially the writers&#8217; group. Good luck with &#8230; <a href="http://www.chrishigginsthatsme.com/mounts-bay-school-3">click here to read more</a>.]]></description>
			<content:encoded><![CDATA[<p>Good to meet the new Yr 7 intake at Mounts Bay School today, especially the writers&#8217; group. Good luck with the writing everyone.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrishigginsthatsme.com/mounts-bay-school-3/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dracaena Centre</title>
		<link>http://www.chrishigginsthatsme.com/dracaena-centre</link>
		<comments>http://www.chrishigginsthatsme.com/dracaena-centre#comments</comments>
		<pubDate>Fri, 26 Aug 2011 13:41:40 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=238</guid>
		<description><![CDATA[Good to meet the guys and girls at the Dracaena Centre on Weds. I really enjoyed talking to you all. &#8230; <a href="http://www.chrishigginsthatsme.com/dracaena-centre">click here to read more</a>.]]></description>
			<content:encoded><![CDATA[<p>Good to meet the guys and girls at the Dracaena Centre on Weds. I really enjoyed talking to you all. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrishigginsthatsme.com/dracaena-centre/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Penzance Lit Fest</title>
		<link>http://www.chrishigginsthatsme.com/penzance-lit-fest</link>
		<comments>http://www.chrishigginsthatsme.com/penzance-lit-fest#comments</comments>
		<pubDate>Mon, 01 Aug 2011 08:58:30 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=235</guid>
		<description><![CDATA[Good to meet all you budding writers at the Pz Lit Fest last week, both young-and not so young! Good &#8230; <a href="http://www.chrishigginsthatsme.com/penzance-lit-fest">click here to read more</a>.]]></description>
			<content:encoded><![CDATA[<p>Good to meet all you budding writers at the Pz Lit Fest last week, both young-and not so young! Good luck with the writing guys and hope you enjoyed &#8220;He&#8217;s After Me&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrishigginsthatsme.com/penzance-lit-fest/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accrington School and Ripley St Thomas</title>
		<link>http://www.chrishigginsthatsme.com/accrington-school-and-ripley-st-thomas</link>
		<comments>http://www.chrishigginsthatsme.com/accrington-school-and-ripley-st-thomas#comments</comments>
		<pubDate>Sat, 02 Jul 2011 20:44:43 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=226</guid>
		<description><![CDATA[I am so bad at writing up my events after I&#8217;ve been to them, but just to say had a &#8230; <a href="http://www.chrishigginsthatsme.com/accrington-school-and-ripley-st-thomas">click here to read more</a>.]]></description>
			<content:encoded><![CDATA[<p>I am so bad at writing up my events after I&#8217;ve been to them, but just to say had a fab time meeting you guys and thank you so much to those people who wrote to tell me they loved &#8220;He&#8217;s after Me&#8221;even before I got home!<object width="400" height="300"><param name="flashvars" value="offsite=true&#038;lang=en-us&#038;page_show_url=%2Fphotos%2F47462737%40N04%2Fsets%2F72157627062195561%2Fshow%2F&#038;page_show_back_url=%2Fphotos%2F47462737%40N04%2Fsets%2F72157627062195561%2F&#038;set_id=72157627062195561&#038;jump_to="></param><param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=104087"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/slideshow/show.swf?v=104087" allowFullScreen="true" flashvars="offsite=true&#038;lang=en-us&#038;page_show_url=%2Fphotos%2F47462737%40N04%2Fsets%2F72157627062195561%2Fshow%2F&#038;page_show_back_url=%2Fphotos%2F47462737%40N04%2Fsets%2F72157627062195561%2F&#038;set_id=72157627062195561&#038;jump_to=" width="400" height="300"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrishigginsthatsme.com/accrington-school-and-ripley-st-thomas/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meeting my fans</title>
		<link>http://www.chrishigginsthatsme.com/meeting-my-fans</link>
		<comments>http://www.chrishigginsthatsme.com/meeting-my-fans#comments</comments>
		<pubDate>Thu, 17 Mar 2011 17:49:04 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=195</guid>
		<description><![CDATA[Had a fab time at Torpoint Community School. Thanks for the lovely feedback girls-I enjoyed the day as much as &#8230; <a href="http://www.chrishigginsthatsme.com/meeting-my-fans">click here to read more</a>.]]></description>
			<content:encoded><![CDATA[<p>Had a fab time at Torpoint Community School. Thanks for the lovely feedback girls-I enjoyed the day as much as you did. It was so nice that you&#8217;d all read my books. Here are the photos of a brilliant day.<object width="400" height="300"><param name="flashvars" value="offsite=true&#038;lang=en-us&#038;page_show_url=%2Fphotos%2F47462737%40N04%2Fsets%2F72157626163094455%2Fshow%2F&#038;page_show_back_url=%2Fphotos%2F47462737%40N04%2Fsets%2F72157626163094455%2F&#038;set_id=72157626163094455&#038;jump_to="></param><param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=71649"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/slideshow/show.swf?v=71649" allowFullScreen="true" flashvars="offsite=true&#038;lang=en-us&#038;page_show_url=%2Fphotos%2F47462737%40N04%2Fsets%2F72157626163094455%2Fshow%2F&#038;page_show_back_url=%2Fphotos%2F47462737%40N04%2Fsets%2F72157626163094455%2F&#038;set_id=72157626163094455&#038;jump_to=" width="400" height="300"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrishigginsthatsme.com/meeting-my-fans/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cape Cornwall Awards Evening</title>
		<link>http://www.chrishigginsthatsme.com/cape-cornwall-awards-evening</link>
		<comments>http://www.chrishigginsthatsme.com/cape-cornwall-awards-evening#comments</comments>
		<pubDate>Sun, 28 Nov 2010 18:05:05 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=177</guid>
		<description><![CDATA[Great honour to be guest speaker at Cape Cornwall School. Good luck to all the students>.
]]></description>
			<content:encoded><![CDATA[<p>Great honour to be guest speaker at Cape Cornwall School. Good luck to all the students>.<object width="400" height="300"><param name="flashvars" value="offsite=true&#038;lang=en-us&#038;page_show_url=%2Fphotos%2F47462737%40N04%2Fsets%2F72157625528180282%2Fshow%2F&#038;page_show_back_url=%2Fphotos%2F47462737%40N04%2Fsets%2F72157625528180282%2F&#038;set_id=72157625528180282&#038;jump_to="></param><param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=71649"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/slideshow/show.swf?v=71649" allowFullScreen="true" flashvars="offsite=true&#038;lang=en-us&#038;page_show_url=%2Fphotos%2F47462737%40N04%2Fsets%2F72157625528180282%2Fshow%2F&#038;page_show_back_url=%2Fphotos%2F47462737%40N04%2Fsets%2F72157625528180282%2F&#038;set_id=72157625528180282&#038;jump_to=" width="400" height="300"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrishigginsthatsme.com/cape-cornwall-awards-evening/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grampound with Creed</title>
		<link>http://www.chrishigginsthatsme.com/grampound-with-creed</link>
		<comments>http://www.chrishigginsthatsme.com/grampound-with-creed#comments</comments>
		<pubDate>Wed, 06 Oct 2010 20:55:34 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=166</guid>
		<description><![CDATA[Lovely to meet the whole Junior class of Grampound with Creed School, years 3, 4, 5 and 6 together.What a &#8230; <a href="http://www.chrishigginsthatsme.com/grampound-with-creed">click here to read more</a>.]]></description>
			<content:encoded><![CDATA[<p>Lovely to meet the whole Junior class of Grampound with Creed School, years 3, 4, 5 and 6 together.What a great little school!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrishigginsthatsme.com/grampound-with-creed/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Penzance Literature Festival</title>
		<link>http://www.chrishigginsthatsme.com/penzance-literature-festival</link>
		<comments>http://www.chrishigginsthatsme.com/penzance-literature-festival#comments</comments>
		<pubDate>Sun, 05 Sep 2010 19:22:10 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=156</guid>
		<description><![CDATA[Good to take part in the first ever Penzance Lit Fest in August. Lots of fantastic writers appeared plus yours &#8230; <a href="http://www.chrishigginsthatsme.com/penzance-literature-festival">click here to read more</a>.]]></description>
			<content:encoded><![CDATA[<p>Good to take part in the first ever Penzance Lit Fest in August. Lots of fantastic writers appeared plus yours truly! it was such a success it&#8217;s going to be an annual event now so make sure you book your summer holiday in Cornwall next year and I&#8217;ll see you there!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrishigginsthatsme.com/penzance-literature-festival/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

