
<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: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/"
		>
<channel>
	<title>Comments for Chris Higgins</title>
	<atom:link href="http://www.chrishigginsthatsme.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.chrishigginsthatsme.com</link>
	<description>thats me</description>
	<lastBuildDate>Mon, 06 Feb 2012 10:41:32 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on World Book Week by chris</title>
		<link>http://www.chrishigginsthatsme.com/world-book-week/comment-page-1#comment-302</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Mon, 06 Feb 2012 10:41:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=286#comment-302</guid>
		<description>Will do. Send me your email address nearer to the time.</description>
		<content:encoded><![CDATA[<p>Will do. Send me your email address nearer to the time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on World Book Week by Chloe White</title>
		<link>http://www.chrishigginsthatsme.com/world-book-week/comment-page-1#comment-301</link>
		<dc:creator>Chloe White</dc:creator>
		<pubDate>Sun, 05 Feb 2012 16:19:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=286#comment-301</guid>
		<description>I go to Truro high school fofr girls, but unfortunately I am away on holiday when you are coming. I have ordered &#039;He&#039;s after me&#039; to be signed, and will ask one of my friends to get it to me. I was wondering if you could e-mail me any of the important things you will talk about with 7A (my form) and any writing tips. Thank you. Chloe White.</description>
		<content:encoded><![CDATA[<p>I go to Truro high school fofr girls, but unfortunately I am away on holiday when you are coming. I have ordered &#8216;He&#8217;s after me&#8217; to be signed, and will ask one of my friends to get it to me. I was wondering if you could e-mail me any of the important things you will talk about with 7A (my form) and any writing tips. Thank you. Chloe White.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New YA Book by Jessica Jillings</title>
		<link>http://www.chrishigginsthatsme.com/new-ya-book/comment-page-1#comment-300</link>
		<dc:creator>Jessica Jillings</dc:creator>
		<pubDate>Tue, 31 Jan 2012 18:09:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=284#comment-300</guid>
		<description>Yay! Congrats, Chris. I bet it is totally brilliant and I can&#039;t wait to read it!

Jessica
http://www.bookedupbloggers.blogspot.com/

xxxxx</description>
		<content:encoded><![CDATA[<p>Yay! Congrats, Chris. I bet it is totally brilliant and I can&#8217;t wait to read it!</p>
<p>Jessica<br />
<a href="http://www.bookedupbloggers.blogspot.com/" rel="nofollow">http://www.bookedupbloggers.blogspot.com/</a></p>
<p>xxxxx</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Illustrations by Hikma</title>
		<link>http://www.chrishigginsthatsme.com/illustrations/comment-page-1#comment-298</link>
		<dc:creator>Hikma</dc:creator>
		<pubDate>Wed, 25 Jan 2012 20:15:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=283#comment-298</guid>
		<description>Me neither-I bet they&#039;ll be great!</description>
		<content:encoded><![CDATA[<p>Me neither-I bet they&#8217;ll be great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New competition by Hikma</title>
		<link>http://www.chrishigginsthatsme.com/new-competition-2/comment-page-1#comment-297</link>
		<dc:creator>Hikma</dc:creator>
		<pubDate>Wed, 25 Jan 2012 20:15:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=281#comment-297</guid>
		<description>Cool-I&#039;ve entered it-fingers crossed I win!</description>
		<content:encoded><![CDATA[<p>Cool-I&#8217;ve entered it-fingers crossed I win!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Welcome to my new look website by Nayma</title>
		<link>http://www.chrishigginsthatsme.com/welcome-to-my-new-look-website/comment-page-1#comment-296</link>
		<dc:creator>Nayma</dc:creator>
		<pubDate>Thu, 19 Jan 2012 12:33:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=80#comment-296</guid>
		<description>i love your books so much!i have just recently started reading them and i love them!my favourite one so far is &#039;would you rather?&#039;it was hilarious!i hope you continue to write books because i guarantee you,i would read all of them!</description>
		<content:encoded><![CDATA[<p>i love your books so much!i have just recently started reading them and i love them!my favourite one so far is &#8216;would you rather?&#8217;it was hilarious!i hope you continue to write books because i guarantee you,i would read all of them!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Films of books. by Lucy</title>
		<link>http://www.chrishigginsthatsme.com/films-of-books/comment-page-1#comment-272</link>
		<dc:creator>Lucy</dc:creator>
		<pubDate>Tue, 15 Nov 2011 12:20:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=261#comment-272</guid>
		<description>Would love to see a film of &#039;He&#039;s After Me&#039;!</description>
		<content:encoded><![CDATA[<p>Would love to see a film of &#8216;He&#8217;s After Me&#8217;!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on He&#8217;s After Me by Chris Higgins &#8230; Competition winners!</title>
		<link>http://www.chrishigginsthatsme.com/books/hes-after-me/comment-page-1#comment-271</link>
		<dc:creator>Chris Higgins &#8230; Competition winners!</dc:creator>
		<pubDate>Tue, 15 Nov 2011 10:09:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/books/test#comment-271</guid>
		<description>[...] C; Laura R; Courtney; Haania A; Rubi B; Nichole L and Molly Turrell &#8211; you guys get a set of He&#8217;s After Me bookmark and poster! We&#8217;ll be contacting you today to get your prizes out to [...]</description>
		<content:encoded><![CDATA[<p>[...] C; Laura R; Courtney; Haania A; Rubi B; Nichole L and Molly Turrell &#8211; you guys get a set of He&#8217;s After Me bookmark and poster! We&#8217;ll be contacting you today to get your prizes out to [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New competition by Ella</title>
		<link>http://www.chrishigginsthatsme.com/new-competition/comment-page-1#comment-270</link>
		<dc:creator>Ella</dc:creator>
		<pubDate>Tue, 15 Nov 2011 07:35:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=254#comment-270</guid>
		<description>the competitionn was amentto be closed yesterday.. no winners yet?</description>
		<content:encoded><![CDATA[<p>the competitionn was amentto be closed yesterday.. no winners yet?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Competition winners! by Hikma</title>
		<link>http://www.chrishigginsthatsme.com/competition-winners-2/comment-page-1#comment-268</link>
		<dc:creator>Hikma</dc:creator>
		<pubDate>Thu, 10 Nov 2011 19:36:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishigginsthatsme.com/?p=253#comment-268</guid>
		<description>@Ella
How do you get what?
If you mean the book, an email will be sent to you asking for your address-all you have to do is reply with your address and the book will get posted to your door-that&#039;s if you&#039;ve won of course.</description>
		<content:encoded><![CDATA[<p>@Ella<br />
How do you get what?<br />
If you mean the book, an email will be sent to you asking for your address-all you have to do is reply with your address and the book will get posted to your door-that&#8217;s if you&#8217;ve won of course.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

