<?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>Jeremy &#34;DayJob&#34; Titus</title>
	<atom:link href="http://jeremytitus.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jeremytitus.com</link>
	<description></description>
	<lastBuildDate>Tue, 07 May 2013 17:57:05 +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>Code: Javascript method to validate/control input fields</title>
		<link>http://jeremytitus.com/2013/05/07/code-javascript-method-to-validatecontrol-input-fields/</link>
		<comments>http://jeremytitus.com/2013/05/07/code-javascript-method-to-validatecontrol-input-fields/#comments</comments>
		<pubDate>Tue, 07 May 2013 17:56:44 +0000</pubDate>
		<dc:creator>Jeremy Titus</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[input]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[masks]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[validate]]></category>

		<guid isPermaLink="false">http://jeremytitus.com/?p=1861</guid>
		<description><![CDATA[Below I will attempt to post a number of input masks/validators/limiters for basic javascript without using JQuery. Feel free to copy and use however you like. If you find some shortcuts or enhancements that are general enough please share and I will add them.]]></description>
				<content:encoded><![CDATA[<p>Below I will attempt to post a number of input masks/validators/limiters for basic javascript without using JQuery.</p>
<p>Feel free to copy and use however you like. If you find some shortcuts or enhancements that are general enough please share and I will add them.</p>
<pre class="brush: jscript; title: ; notranslate">
/* FIELD INPUT LIMITERS (VALIDATORS) */
var validate = {};
/* ex. usage: document.getElementById('someinput').onkeypress = validate.dec; */
// decimal (negative and positive with 'unlimited' numbers above and below the dec point)
// - will limit the input from user to numbers and 1 decimal point and 1 negative sign in the correct position only.
validate.dec = function(e){
        var cur_return = false,
        cur_value, cur_full_value, cur_string;
        // validate float/dec
        cur_string = String.fromCharCode(e.charCode).toString();
        cur_value = e.target.value;
        cur_full_value = cur_value.substring(0, e.target.selectionStart) + cur_string + cur_value.substring(e.target.selectionStart);
        if (cur_string.match(/[0-9.\-]/) &amp;&amp;
            (!cur_string.match(/-/) || (cur_string.match(/-/) &amp;&amp; !cur_value.match(/-/) &amp;&amp; cur_full_value.substring(0, 1) === &quot;-&quot;)) &amp;&amp;
            (!cur_string.match(/[.]/) || (cur_string.match(/[.]/) &amp;&amp; !cur_value.match(/[.]/) &amp;&amp; cur_full_value.substring(0, 1) !== &quot;.&quot;)) &amp;&amp;
            cur_full_value.match(/-?(0|([1-9]\d*))(\.\d+)?/)) {
                cur_return = true;
        }
        return cur_return;
};
</pre>
]]></content:encoded>
			<wfw:commentRss>http://jeremytitus.com/2013/05/07/code-javascript-method-to-validatecontrol-input-fields/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code: Object containing all countries</title>
		<link>http://jeremytitus.com/2013/04/11/code-object-containing-all-countries/</link>
		<comments>http://jeremytitus.com/2013/04/11/code-object-containing-all-countries/#comments</comments>
		<pubDate>Thu, 11 Apr 2013 23:57:47 +0000</pubDate>
		<dc:creator>Jeremy Titus</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[myblog]]></category>

		<guid isPermaLink="false">http://jeremytitus.com/?p=1851</guid>
		<description><![CDATA[Need a quick arrayobject that contains all the current countries? Simple copy and paste and find and replace will get you what you need.]]></description>
				<content:encoded><![CDATA[<p>Need a quick arrayobject that contains all the current countries? Simple copy and paste and find and replace will get you what you need.</p>
<pre class="brush: jscript; title: ; notranslate">objArray = [
{_id : &quot;GB&quot;, _html: &quot;United Kingdom&quot;},
{_id : &quot;US&quot;, _html: &quot;United States&quot;},
{_id : &quot;AF&quot;, _html: &quot;Afghanistan&quot;},
{_id : &quot;AL&quot;, _html: &quot;Albania&quot;},
{_id : &quot;DZ&quot;, _html: &quot;Algeria&quot;},
{_id : &quot;AS&quot;, _html: &quot;American Samoa&quot;},
{_id : &quot;AD&quot;, _html: &quot;Andorra&quot;},
{_id : &quot;AO&quot;, _html: &quot;Angola&quot;},
{_id : &quot;AI&quot;, _html: &quot;Anguilla&quot;},
{_id : &quot;AQ&quot;, _html: &quot;Antarctica&quot;},
{_id : &quot;AG&quot;, _html: &quot;Antigua And Barbuda&quot;},
{_id : &quot;AR&quot;, _html: &quot;Argentina&quot;},
{_id : &quot;AM&quot;, _html: &quot;Armenia&quot;},
{_id : &quot;AW&quot;, _html: &quot;Aruba&quot;},
{_id : &quot;AU&quot;, _html: &quot;Australia&quot;},
{_id : &quot;AT&quot;, _html: &quot;Austria&quot;},
{_id : &quot;AZ&quot;, _html: &quot;Azerbaijan&quot;},
{_id : &quot;BS&quot;, _html: &quot;Bahamas&quot;},
{_id : &quot;BH&quot;, _html: &quot;Bahrain&quot;},
{_id : &quot;BD&quot;, _html: &quot;Bangladesh&quot;},
{_id : &quot;BB&quot;, _html: &quot;Barbados&quot;},
{_id : &quot;BY&quot;, _html: &quot;Belarus&quot;},
{_id : &quot;BE&quot;, _html: &quot;Belgium&quot;},
{_id : &quot;BZ&quot;, _html: &quot;Belize&quot;},
{_id : &quot;BJ&quot;, _html: &quot;Benin&quot;},
{_id : &quot;BM&quot;, _html: &quot;Bermuda&quot;},
{_id : &quot;BT&quot;, _html: &quot;Bhutan&quot;},
{_id : &quot;BO&quot;, _html: &quot;Bolivia&quot;},
{_id : &quot;BA&quot;, _html: &quot;Bosnia And Herzegowina&quot;},
{_id : &quot;BW&quot;, _html: &quot;Botswana&quot;},
{_id : &quot;BV&quot;, _html: &quot;Bouvet Island&quot;},
{_id : &quot;BR&quot;, _html: &quot;Brazil&quot;},
{_id : &quot;IO&quot;, _html: &quot;British Indian Ocean Territory&quot;},
{_id : &quot;BN&quot;, _html: &quot;Brunei Darussalam&quot;},
{_id : &quot;BG&quot;, _html: &quot;Bulgaria&quot;},
{_id : &quot;BF&quot;, _html: &quot;Burkina Faso&quot;},
{_id : &quot;BI&quot;, _html: &quot;Burundi&quot;},
{_id : &quot;KH&quot;, _html: &quot;Cambodia&quot;},
{_id : &quot;CM&quot;, _html: &quot;Cameroon&quot;},
{_id : &quot;CA&quot;, _html: &quot;Canada&quot;},
{_id : &quot;CV&quot;, _html: &quot;Cape Verde&quot;},
{_id : &quot;KY&quot;, _html: &quot;Cayman Islands&quot;},
{_id : &quot;CF&quot;, _html: &quot;Central African Republic&quot;},
{_id : &quot;TD&quot;, _html: &quot;Chad&quot;},
{_id : &quot;CL&quot;, _html: &quot;Chile&quot;},
{_id : &quot;CN&quot;, _html: &quot;China&quot;},
{_id : &quot;CX&quot;, _html: &quot;Christmas Island&quot;},
{_id : &quot;CC&quot;, _html: &quot;Cocos (Keeling) Islands&quot;},
{_id : &quot;CO&quot;, _html: &quot;Colombia&quot;},
{_id : &quot;KM&quot;, _html: &quot;Comoros&quot;},
{_id : &quot;CG&quot;, _html: &quot;Congo&quot;},
{_id : &quot;CD&quot;, _html: &quot;Congo, The Democratic Republic Of The&quot;},
{_id : &quot;CK&quot;, _html: &quot;Cook Islands&quot;},
{_id : &quot;CR&quot;, _html: &quot;Costa Rica&quot;},
{_id : &quot;CI&quot;, _html: &quot;Cote D'Ivoire&quot;},
{_id : &quot;HR&quot;, _html: &quot;Croatia (Local Name: Hrvatska)&quot;},
{_id : &quot;CU&quot;, _html: &quot;Cuba&quot;},
{_id : &quot;CY&quot;, _html: &quot;Cyprus&quot;},
{_id : &quot;CZ&quot;, _html: &quot;Czech Republic&quot;},
{_id : &quot;DK&quot;, _html: &quot;Denmark&quot;},
{_id : &quot;DJ&quot;, _html: &quot;Djibouti&quot;},
{_id : &quot;DM&quot;, _html: &quot;Dominica&quot;},
{_id : &quot;DO&quot;, _html: &quot;Dominican Republic&quot;},
{_id : &quot;TP&quot;, _html: &quot;East Timor&quot;},
{_id : &quot;EC&quot;, _html: &quot;Ecuador&quot;},
{_id : &quot;EG&quot;, _html: &quot;Egypt&quot;},
{_id : &quot;SV&quot;, _html: &quot;El Salvador&quot;},
{_id : &quot;GQ&quot;, _html: &quot;Equatorial Guinea&quot;},
{_id : &quot;ER&quot;, _html: &quot;Eritrea&quot;},
{_id : &quot;EE&quot;, _html: &quot;Estonia&quot;},
{_id : &quot;ET&quot;, _html: &quot;Ethiopia&quot;},
{_id : &quot;FK&quot;, _html: &quot;Falkland Islands (Malvinas)&quot;},
{_id : &quot;FO&quot;, _html: &quot;Faroe Islands&quot;},
{_id : &quot;FJ&quot;, _html: &quot;Fiji&quot;},
{_id : &quot;FI&quot;, _html: &quot;Finland&quot;},
{_id : &quot;FR&quot;, _html: &quot;France&quot;},
{_id : &quot;FX&quot;, _html: &quot;France, Metropolitan&quot;},
{_id : &quot;GF&quot;, _html: &quot;French Guiana&quot;},
{_id : &quot;PF&quot;, _html: &quot;French Polynesia&quot;},
{_id : &quot;TF&quot;, _html: &quot;French Southern Territories&quot;},
{_id : &quot;GA&quot;, _html: &quot;Gabon&quot;},
{_id : &quot;GM&quot;, _html: &quot;Gambia&quot;},
{_id : &quot;GE&quot;, _html: &quot;Georgia&quot;},
{_id : &quot;DE&quot;, _html: &quot;Germany&quot;},
{_id : &quot;GH&quot;, _html: &quot;Ghana&quot;},
{_id : &quot;GI&quot;, _html: &quot;Gibraltar&quot;},
{_id : &quot;GR&quot;, _html: &quot;Greece&quot;},
{_id : &quot;GL&quot;, _html: &quot;Greenland&quot;},
{_id : &quot;GD&quot;, _html: &quot;Grenada&quot;},
{_id : &quot;GP&quot;, _html: &quot;Guadeloupe&quot;},
{_id : &quot;GU&quot;, _html: &quot;Guam&quot;},
{_id : &quot;GT&quot;, _html: &quot;Guatemala&quot;},
{_id : &quot;GN&quot;, _html: &quot;Guinea&quot;},
{_id : &quot;GW&quot;, _html: &quot;Guinea-Bissau&quot;},
{_id : &quot;GY&quot;, _html: &quot;Guyana&quot;},
{_id : &quot;HT&quot;, _html: &quot;Haiti&quot;},
{_id : &quot;HM&quot;, _html: &quot;Heard And Mc Donald Islands&quot;},
{_id : &quot;VA&quot;, _html: &quot;Holy See (Vatican City State)&quot;},
{_id : &quot;HN&quot;, _html: &quot;Honduras&quot;},
{_id : &quot;HK&quot;, _html: &quot;Hong Kong&quot;},
{_id : &quot;HU&quot;, _html: &quot;Hungary&quot;},
{_id : &quot;IS&quot;, _html: &quot;Iceland&quot;},
{_id : &quot;IN&quot;, _html: &quot;India&quot;},
{_id : &quot;ID&quot;, _html: &quot;Indonesia&quot;},
{_id : &quot;IR&quot;, _html: &quot;Iran (Islamic Republic Of)&quot;},
{_id : &quot;IQ&quot;, _html: &quot;Iraq&quot;},
{_id : &quot;IE&quot;, _html: &quot;Ireland&quot;},
{_id : &quot;IL&quot;, _html: &quot;Israel&quot;},
{_id : &quot;IT&quot;, _html: &quot;Italy&quot;},
{_id : &quot;JM&quot;, _html: &quot;Jamaica&quot;},
{_id : &quot;JP&quot;, _html: &quot;Japan&quot;},
{_id : &quot;JO&quot;, _html: &quot;Jordan&quot;},
{_id : &quot;KZ&quot;, _html: &quot;Kazakhstan&quot;},
{_id : &quot;KE&quot;, _html: &quot;Kenya&quot;},
{_id : &quot;KI&quot;, _html: &quot;Kiribati&quot;},
{_id : &quot;KP&quot;, _html: &quot;Korea, Democratic People's Republic Of&quot;},
{_id : &quot;KR&quot;, _html: &quot;Korea, Republic Of&quot;},
{_id : &quot;KW&quot;, _html: &quot;Kuwait&quot;},
{_id : &quot;KG&quot;, _html: &quot;Kyrgyzstan&quot;},
{_id : &quot;LA&quot;, _html: &quot;Lao People's Democratic Republic&quot;},
{_id : &quot;LV&quot;, _html: &quot;Latvia&quot;},
{_id : &quot;LB&quot;, _html: &quot;Lebanon&quot;},
{_id : &quot;LS&quot;, _html: &quot;Lesotho&quot;},
{_id : &quot;LR&quot;, _html: &quot;Liberia&quot;},
{_id : &quot;LY&quot;, _html: &quot;Libyan Arab Jamahiriya&quot;},
{_id : &quot;LI&quot;, _html: &quot;Liechtenstein&quot;},
{_id : &quot;LT&quot;, _html: &quot;Lithuania&quot;},
{_id : &quot;LU&quot;, _html: &quot;Luxembourg&quot;},
{_id : &quot;MO&quot;, _html: &quot;Macau&quot;},
{_id : &quot;MK&quot;, _html: &quot;Macedonia, Former Yugoslav Republic Of&quot;},
{_id : &quot;MG&quot;, _html: &quot;Madagascar&quot;},
{_id : &quot;MW&quot;, _html: &quot;Malawi&quot;},
{_id : &quot;MY&quot;, _html: &quot;Malaysia&quot;},
{_id : &quot;MV&quot;, _html: &quot;Maldives&quot;},
{_id : &quot;ML&quot;, _html: &quot;Mali&quot;},
{_id : &quot;MT&quot;, _html: &quot;Malta&quot;},
{_id : &quot;MH&quot;, _html: &quot;Marshall Islands&quot;},
{_id : &quot;MQ&quot;, _html: &quot;Martinique&quot;},
{_id : &quot;MR&quot;, _html: &quot;Mauritania&quot;},
{_id : &quot;MU&quot;, _html: &quot;Mauritius&quot;},
{_id : &quot;YT&quot;, _html: &quot;Mayotte&quot;},
{_id : &quot;MX&quot;, _html: &quot;Mexico&quot;},
{_id : &quot;FM&quot;, _html: &quot;Micronesia, Federated States Of&quot;},
{_id : &quot;MD&quot;, _html: &quot;Moldova, Republic Of&quot;},
{_id : &quot;MC&quot;, _html: &quot;Monaco&quot;},
{_id : &quot;MN&quot;, _html: &quot;Mongolia&quot;},
{_id : &quot;MS&quot;, _html: &quot;Montserrat&quot;},
{_id : &quot;MA&quot;, _html: &quot;Morocco&quot;},
{_id : &quot;MZ&quot;, _html: &quot;Mozambique&quot;},
{_id : &quot;MM&quot;, _html: &quot;Myanmar&quot;},
{_id : &quot;NA&quot;, _html: &quot;Namibia&quot;},
{_id : &quot;NR&quot;, _html: &quot;Nauru&quot;},
{_id : &quot;NP&quot;, _html: &quot;Nepal&quot;},
{_id : &quot;NL&quot;, _html: &quot;Netherlands&quot;},
{_id : &quot;AN&quot;, _html: &quot;Netherlands Antilles&quot;},
{_id : &quot;NC&quot;, _html: &quot;New Caledonia&quot;},
{_id : &quot;NZ&quot;, _html: &quot;New Zealand&quot;},
{_id : &quot;NI&quot;, _html: &quot;Nicaragua&quot;},
{_id : &quot;NE&quot;, _html: &quot;Niger&quot;},
{_id : &quot;NG&quot;, _html: &quot;Nigeria&quot;},
{_id : &quot;NU&quot;, _html: &quot;Niue&quot;},
{_id : &quot;NF&quot;, _html: &quot;Norfolk Island&quot;},
{_id : &quot;MP&quot;, _html: &quot;Northern Mariana Islands&quot;},
{_id : &quot;NO&quot;, _html: &quot;Norway&quot;},
{_id : &quot;OM&quot;, _html: &quot;Oman&quot;},
{_id : &quot;PK&quot;, _html: &quot;Pakistan&quot;},
{_id : &quot;PW&quot;, _html: &quot;Palau&quot;},
{_id : &quot;PA&quot;, _html: &quot;Panama&quot;},
{_id : &quot;PG&quot;, _html: &quot;Papua New Guinea&quot;},
{_id : &quot;PY&quot;, _html: &quot;Paraguay&quot;},
{_id : &quot;PE&quot;, _html: &quot;Peru&quot;},
{_id : &quot;PH&quot;, _html: &quot;Philippines&quot;},
{_id : &quot;PN&quot;, _html: &quot;Pitcairn&quot;},
{_id : &quot;PL&quot;, _html: &quot;Poland&quot;},
{_id : &quot;PT&quot;, _html: &quot;Portugal&quot;},
{_id : &quot;PR&quot;, _html: &quot;Puerto Rico&quot;},
{_id : &quot;QA&quot;, _html: &quot;Qatar&quot;},
{_id : &quot;RE&quot;, _html: &quot;Reunion&quot;},
{_id : &quot;RO&quot;, _html: &quot;Romania&quot;},
{_id : &quot;RU&quot;, _html: &quot;Russian Federation&quot;},
{_id : &quot;RW&quot;, _html: &quot;Rwanda&quot;},
{_id : &quot;KN&quot;, _html: &quot;Saint Kitts And Nevis&quot;},
{_id : &quot;LC&quot;, _html: &quot;Saint Lucia&quot;},
{_id : &quot;VC&quot;, _html: &quot;Saint Vincent And The Grenadines&quot;},
{_id : &quot;WS&quot;, _html: &quot;Samoa&quot;},
{_id : &quot;SM&quot;, _html: &quot;San Marino&quot;},
{_id : &quot;ST&quot;, _html: &quot;Sao Tome And Principe&quot;},
{_id : &quot;SA&quot;, _html: &quot;Saudi Arabia&quot;},
{_id : &quot;SN&quot;, _html: &quot;Senegal&quot;},
{_id : &quot;SC&quot;, _html: &quot;Seychelles&quot;},
{_id : &quot;SL&quot;, _html: &quot;Sierra Leone&quot;},
{_id : &quot;SG&quot;, _html: &quot;Singapore&quot;},
{_id : &quot;SK&quot;, _html: &quot;Slovakia (Slovak Republic)&quot;},
{_id : &quot;SI&quot;, _html: &quot;Slovenia&quot;},
{_id : &quot;SB&quot;, _html: &quot;Solomon Islands&quot;},
{_id : &quot;SO&quot;, _html: &quot;Somalia&quot;},
{_id : &quot;ZA&quot;, _html: &quot;South Africa&quot;},
{_id : &quot;GS&quot;, _html: &quot;South Georgia, South Sandwich Islands&quot;},
{_id : &quot;ES&quot;, _html: &quot;Spain&quot;},
{_id : &quot;LK&quot;, _html: &quot;Sri Lanka&quot;},
{_id : &quot;SH&quot;, _html: &quot;St. Helena&quot;},
{_id : &quot;PM&quot;, _html: &quot;St. Pierre And Miquelon&quot;},
{_id : &quot;SD&quot;, _html: &quot;Sudan&quot;},
{_id : &quot;SR&quot;, _html: &quot;Suriname&quot;},
{_id : &quot;SJ&quot;, _html: &quot;Svalbard And Jan Mayen Islands&quot;},
{_id : &quot;SZ&quot;, _html: &quot;Swaziland&quot;},
{_id : &quot;SE&quot;, _html: &quot;Sweden&quot;},
{_id : &quot;CH&quot;, _html: &quot;Switzerland&quot;},
{_id : &quot;SY&quot;, _html: &quot;Syrian Arab Republic&quot;},
{_id : &quot;TW&quot;, _html: &quot;Taiwan&quot;},
{_id : &quot;TJ&quot;, _html: &quot;Tajikistan&quot;},
{_id : &quot;TZ&quot;, _html: &quot;Tanzania, United Republic Of&quot;},
{_id : &quot;TH&quot;, _html: &quot;Thailand&quot;},
{_id : &quot;TG&quot;, _html: &quot;Togo&quot;},
{_id : &quot;TK&quot;, _html: &quot;Tokelau&quot;},
{_id : &quot;TO&quot;, _html: &quot;Tonga&quot;},
{_id : &quot;TT&quot;, _html: &quot;Trinidad And Tobago&quot;},
{_id : &quot;TN&quot;, _html: &quot;Tunisia&quot;},
{_id : &quot;TR&quot;, _html: &quot;Turkey&quot;},
{_id : &quot;TM&quot;, _html: &quot;Turkmenistan&quot;},
{_id : &quot;TC&quot;, _html: &quot;Turks And Caicos Islands&quot;},
{_id : &quot;TV&quot;, _html: &quot;Tuvalu&quot;},
{_id : &quot;UG&quot;, _html: &quot;Uganda&quot;},
{_id : &quot;UA&quot;, _html: &quot;Ukraine&quot;},
{_id : &quot;AE&quot;, _html: &quot;United Arab Emirates&quot;},
{_id : &quot;UM&quot;, _html: &quot;United States Minor Outlying Islands&quot;},
{_id : &quot;UY&quot;, _html: &quot;Uruguay&quot;},
{_id : &quot;UZ&quot;, _html: &quot;Uzbekistan&quot;},
{_id : &quot;VU&quot;, _html: &quot;Vanuatu&quot;},
{_id : &quot;VE&quot;, _html: &quot;Venezuela&quot;},
{_id : &quot;VN&quot;, _html: &quot;Viet Nam&quot;},
{_id : &quot;VG&quot;, _html: &quot;Virgin Islands (British)&quot;},
{_id : &quot;VI&quot;, _html: &quot;Virgin Islands (U.S.)&quot;},
{_id : &quot;WF&quot;, _html: &quot;Wallis And Futuna Islands&quot;},
{_id : &quot;EH&quot;, _html: &quot;Western Sahara&quot;},
{_id : &quot;YE&quot;, _html: &quot;Yemen&quot;},
{_id : &quot;YU&quot;, _html: &quot;Yugoslavia&quot;},
{_id : &quot;ZM&quot;, _html: &quot;Zambia&quot;},
{_id : &quot;ZW&quot;, _html: &quot;Zimbabwe&quot;}
]</pre>
]]></content:encoded>
			<wfw:commentRss>http://jeremytitus.com/2013/04/11/code-object-containing-all-countries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
