


<script language="JavaScript" charset="utf-8">


		



		// remote scripting library



		// (c) copyright 2005 modernmethod, inc



		var sajax_debug_mode = false;



		var sajax_request_type = "GET";



		var sajax_target_id = "";



		var sajax_failure_redirect = "";



		



		function sajax_debug(text) {



			if (sajax_debug_mode)



				alert(text);



		}



		



 		function sajax_init_object() {



 			sajax_debug("sajax_init_object() called..")



 			



 			var A;



 			



 			var msxmlhttp = new Array(



				'Msxml2.XMLHTTP.5.0',



				'Msxml2.XMLHTTP.4.0',



				'Msxml2.XMLHTTP.3.0',



				'Msxml2.XMLHTTP',



				'Microsoft.XMLHTTP');



			for (var i = 0; i < msxmlhttp.length; i++) {



				try {



					A = new ActiveXObject(msxmlhttp[i]);



				} catch (e) {



					A = null;



				}



			}



 			



			if(!A && typeof XMLHttpRequest != "undefined")



				A = new XMLHttpRequest();



			if (!A)



				sajax_debug("Could not create connection object.");



			return A;



		}



		



		var sajax_requests = new Array();



		



		function sajax_cancel() {



			for (var i = 0; i < sajax_requests.length; i++) 



				sajax_requests[i].abort();



		}



		



		function sajax_do_call(func_name, args) {



			var i, x, n;



			var uri;



			var post_data;



			var target_id;



			



			sajax_debug("in sajax_do_call().." + sajax_request_type + "/" + sajax_target_id);



			target_id = sajax_target_id;



			if (typeof(sajax_request_type) == "undefined" || sajax_request_type == "") 



				sajax_request_type = "GET";



			



			uri = "http://hawaiiairsoft.us/index.php/forum/fb_rss?no_html=1";


			if (sajax_request_type == "GET") {



			



				if (uri.indexOf("?") == -1) 



					uri += "?rs=" + escape(func_name);



				else



					uri += "&rs=" + escape(func_name);



				uri += "&rst=" + escape(sajax_target_id);



				uri += "&rsrnd=" + new Date().getTime();



				



				for (i = 0; i < args.length-1; i++) 



					uri += "&rsargs[]=" + escape(args[i]);







				post_data = null;



			} 



			else if (sajax_request_type == "POST") {



				post_data = "rs=" + escape(func_name);



				post_data += "&rst=" + escape(sajax_target_id);



				post_data += "&rsrnd=" + new Date().getTime();



				



				for (i = 0; i < args.length-1; i++) 



					post_data = post_data + "&rsargs[]=" + escape(args[i]);



			}



			else {



				alert("Illegal request type: " + sajax_request_type);



			}



			



			x = sajax_init_object();



			if (x == null) {



				if (sajax_failure_redirect != "") {



					location.href = sajax_failure_redirect;



					return false;



				} else {



					sajax_debug("NULL sajax object for user agent:\n" + navigator.userAgent);



					return false;



				}



			} else {



				x.open(sajax_request_type, uri, true);



				// window.open(uri);



				



				sajax_requests[sajax_requests.length] = x;



				



				if (sajax_request_type == "POST") {



					x.setRequestHeader("Method", "POST " + uri + " HTTP/1.1");



					x.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");



				}



			



				x.onreadystatechange = function() {



					if (x.readyState != 4) 



						return;







					sajax_debug("received " + x.responseText);



				



					var status;



					var data;



					var txt = x.responseText.replace(/^\s*|\s*$/g,"");



					status = txt.charAt(0);



					data = txt.substring(2);







					if (status == "") {



						// let's just assume this is a pre-response bailout and let it slide for now



					} else if (status == "-") 



						alert("Error: " + data);



					else {



						if (target_id != "") 



							document.getElementById(target_id).innerHTML = eval(data);



						else {



							try {



								var callback;



								var extra_data = false;



								if (typeof args[args.length-1] == "object") {



									callback = args[args.length-1].callback;



									extra_data = args[args.length-1].extra_data;



								} else {



									callback = args[args.length-1];



								}



								callback(eval(data), extra_data);



							} catch (e) {



								sajax_debug("Caught error " + e + ": Could not eval " + data );



							}



						}



					}



				}



			}



			



			sajax_debug(func_name + " uri = " + uri + "/post = " + post_data);



			x.send(post_data);



			sajax_debug(func_name + " waiting..");



			delete x;



			return true;



		}



		



		


		



		// wrapper for whatru


		



		function x_whatru() {



			sajax_do_call("whatru",



				x_whatru.arguments);



		}



		



		  

	function do_save(status) {



        document.getElementById('whatrudiv2').innerHTML = status;



    }



    function wrugetTextBox() {



        document.getElementById("whatrudiv2").style.display = 'none'; 

        document.getElementById("whatrudiv1").style.display = ''; 

    }



    function wrusaveStatus(id, uname, defaulttext){

        var status;

        document.getElementById("whatrudiv1").style.display = 'none';

        document.getElementById("whatrudiv2").style.display = '';

        status = document.getElementById("statusText").value; 
        
        //uncomment  the line below to enable utf8 encoding, you also need to adjust the field length of cb_rustatus in comprofiler table of your joomla database because it is limited to 255 characters
        //status = convertChar2CP(status);
               
        x_whatru(id, uname, status, defaulttext, do_save);         

    }       



    function wruclearStatus(id, uname, defaulttext){

        var status;

        document.getElementById("whatrudiv1").style.display = 'none';

        document.getElementById("whatrudiv2").style.display = '';       

        document.getElementById("statusText").value = 'is';

        status = document.getElementById("statusText").value;
       
        x_whatru(id, uname, status, defaulttext, do_save);

    }
    
    
    
  function convertCP2DecNCR ( textString ) {
  var outputString = "";
  textString = textString.replace(/^\s+/, '');
  if (textString.length == 0) { return ""; }
  textString = textString.replace(/\s+/g, ' ');
  var listArray = textString.split(' ');
  for ( var i = 0; i < listArray.length; i++ ) {
    var n = parseInt(listArray[i], 16);
    outputString += ('&#' + n + ';');
  }
  return( outputString );
  }
  
  function convertChar2CP ( textString ) { 
    var haut = 0;
    var n = 0;
    CPstring = '';
    for (var i = 0; i < textString.length; i++) {
        var b = textString.charCodeAt(i); 
        if (b < 0 || b > 0xFFFF) {
            CPstring += 'Error ' + dec2hex(b) + '!';
        }
        if (haut != 0) {
            if (0xDC00 <= b && b <= 0xDFFF) {
                CPstring += dec2hex(0x10000 + ((haut - 0xD800) << 10) + (b - 0xDC00)) + ' ';
                haut = 0;
                continue;
            }else {
                CPstring += '!erreur ' + dec2hex(haut) + '!';
                haut = 0;
            }
        }
        if (0xD800 <= b && b <= 0xDBFF) {
            haut = b;
        }
        else {
            CPstring += dec2hex(b) + ' ';
        }
    }
        CPstring = CPstring.substring(0, CPstring.length-1);
    
        return convertCP2DecNCR(CPstring) ;   
  }
  
  function dec2hex ( textString ) {
 return (textString+0).toString(16).toUpperCase();
 }
   
  
  
  

    
    

</script>

<link rel="stylesheet" type="text/css" href="components/com_comprofiler/plugin/user/plug_cbwhatareyoudoing/whatru.css">


<?xml version="1.0" encoding="utf-8"?>
<!-- generator="Kunena 1.5.8"> -->
<rss version="0.91">
    <channel>
        <title>Hawaii AirSoft Community - Forum</title>
        <description>Kunena Site Syndication</description>
        <link>http://hawaiiairsoft.us/</link>
        <lastBuildDate>Tue, 07 Sep 2010 02:41:22 -1000</lastBuildDate>
        <generator>Kunena 1.5.8</generator>
        <image>
	        <url>http://hawaiiairsoft.us/components/com_kunena/template/default_ex/images/english/emoticons/rss.gif</url>
	        <title>Powered by Kunena</title>
	        <link>http://hawaiiairsoft.us/</link>
	        <description>Kunena Site Syndication</description>
        </image>
        <item>
            <title>Subject: Yo - by: Jasoncredible</title>
            <link>http://hawaiiairsoft.us/index.php/forum/2-welcome-mat/907-yo?limit=6&amp;start=6#936</link>
            <description>Yeah it is a rare occasion I play on Sundays but with only one day of drill (army reserve) I told my job I have 2 days of drill.  Had to work last Saturday because someone called in sick.</description>
            <pubDate>Mon, 06 Sep 2010 19:46:14 -1000</pubDate>
        </item>
        <item>
            <title>Subject: Hi - by: WTF?Shane</title>
            <link>http://hawaiiairsoft.us/index.php/forum/2-welcome-mat/889-hi#934</link>
            <description>Sent you a PM Ivan. Please delete the '?' from my username. Btw, I only new one guy from the HAC forums I met from the bunker couple years back, but I lost his email.

http://hawaiiairsoft.us/components/com_joomgallery/img_pictures/2008_19/02-03_the_bunker_215/img_3349_20091002_1536613430.jpg

Found pics from the 02-03-2008 bunker game.</description>
            <pubDate>Mon, 06 Sep 2010 18:47:10 -1000</pubDate>
        </item>
        <item>
            <title>Subject: Game THIS Sunday at Nanakuli Ranch (Sept. 05) - by: WTF?Shane</title>
            <link>http://hawaiiairsoft.us/index.php/forum/5-announcements/902-game-this-sunday-at-nanakuli-ranch-sept-05#933</link>
            <description>LOL. I should've went to WW instead of Allstar. Was only me and this Marine there and we just ended up talking story.</description>
            <pubDate>Mon, 06 Sep 2010 18:36:34 -1000</pubDate>
        </item>
        <item>
            <title>Subject: Picture Hunt - by: Ivan</title>
            <link>http://hawaiiairsoft.us/index.php/forum/3-suggestion-box/932-picture-hunt#932</link>
            <description>Hey everyone, the last time I added pictures to the gallery it was from the March 7th Wicked West game.  Help catch up on updating the gallery.

Please post some links to pictures taken since.  Even if you didn't take the pics post the links anyway, I'll work with the photographer for permission.

THANKS!</description>
            <pubDate>Mon, 06 Sep 2010 12:42:56 -1000</pubDate>
        </item>
        <item>
            <title>Subject: Selling MP5 A4 Marui Flash light foregrip Systema - by: 808Bento</title>
            <link>http://hawaiiairsoft.us/index.php/forum/7-for-sale-traded-or-wanted/763-selling-mp5-a4-marui-flash-light-foregrip-systema#931</link>
            <description>What kinda battery size u runnin in that mp5 and do u play at nanakuli?</description>
            <pubDate>Mon, 06 Sep 2010 11:25:24 -1000</pubDate>
        </item>
        <item>
            <title>Subject: Howzit everybody - by: SpillChaser</title>
            <link>http://hawaiiairsoft.us/index.php/forum/2-welcome-mat/910-howzit-everybody#930</link>
            <description>actually I've been in and out of airsoft though the years. played at nanakuli yesterday had blast playing again, out of shape but had fun. can't wait till next time, in the mean time gotta stock up on some supplies (batteries and BBs)</description>
            <pubDate>Mon, 06 Sep 2010 10:49:46 -1000</pubDate>
        </item>
        <item>
            <title>Subject: Aloha! Fellow airsofters - by: Ivan</title>
            <link>http://hawaiiairsoft.us/index.php/forum/2-welcome-mat/851-aloha-fellow-airsofters#927</link>
            <description>Welcome to the site, were you one of the people I 'chatted' with from one of the PI airsoft forums about Hawaii Airsoft?

 J47 wrote: 
 Greetings!

After having my bearings and getting used here in OAHU for a year, pretty much I can come back from my AIrsoft Hiatus. My Name is Jeremy and ive been playing airsoft for a good 12 years now. I started back in the Philippines back in 98'. and due to work stresses ive not been able to play for a year, now since things got easy i might try again and relive my ol' airsoft days.

Now scouring for community forums here, I stumbled with this one and I was hoping good folks here can show me around where to get started playing. I saw NImitz all stars, but thats it.. 

As for the gears and guns pretty much im back to zero since its illegal to ship that kinda stuff from PI. 

As for my airsoft experience, im not that hardcore even with a decade of playing. I just want plain, by-the-rule tactical fun playing with fellow Airsofters. im more of a technician since i started with a TM FAMAS SV ( yep version 1 ) no HI caps, lugging around 9.6v 3000mah NICADS ( HEAVY ) upgrades were scarce back then. so I resorted in self repair and maintenance and knowing the GBS in and out up until i stopped playing.

So there you go, this is one beautiful island and I hope Itll be more awesome playing with you guys! </description>
            <pubDate>Mon, 06 Sep 2010 09:22:00 -1000</pubDate>
        </item>
        <item>
            <title>Subject: Hello from the mainland - by: Ivan</title>
            <link>http://hawaiiairsoft.us/index.php/forum/2-welcome-mat/875-hello-from-the-mainland#926</link>
            <description>EagleDriver,

Wow some UK airsoft, been to Europe a bunch, always thought airsoft would be great there....  Give you that WWII feel, lol.  You currently in Hawaii still?

Who's HT?

 EagleDriver wrote: 
 Hello from waaaay out east.  Although I live in Baltimore, I am a consultant and travel a lot for work.  It allows me to take advantage of the weekends and airsoft at different fields and events.  I have played as far east as Germany (just got back) and the UK, and as far west as Seattle, Monterey, and LA.  

HT is a big customer of mine, however, and so it looks like I will be spending some time on Oahu and Maui this fall.  I hope to get in a few games if the work doesn't always fall on the weekends. </description>
            <pubDate>Mon, 06 Sep 2010 09:18:11 -1000</pubDate>
        </item>
        <item>
            <title>Subject: Back To Work Here - by: Ivan</title>
            <link>http://hawaiiairsoft.us/index.php/forum/5-announcements/922-back-to-work-here#922</link>
            <description>HELLO HAWAII AIRSOFT COMMUNITY MEMBERS!

I've been away from here for long enough.  Like I said, my excuses are the following:

- Too busy with work.

- Too busy finishing my degree.

- Too busy with all my kids.

- Web site blocked by my work internet.

But enough with that, I need to work on it again, and tell my wife:  &quot;Too bad hun, I'm playing airsoft this weekend!!!&quot;  LoL, easier said than done.

First off before I do some real updating, I need to do some behind the scenes house keeping here:  Security updates, backups, etc.

The Prizes will be on hold temporarily, Kameleon, you're still owed a prize, I'll get that to you.  There are no winners for May to September, I'll be restarting them in October.

Thanks for staying active on the forum, I'm still looking for article writers, event updates, picture contributors, and forum administrators.  Let me know if you're interested.  I'm also always looking for sponsors out there, to help out with giving back to the Airsofters.</description>
            <pubDate>Mon, 06 Sep 2010 09:04:32 -1000</pubDate>
        </item>
        <item>
            <title>Subject: Your Gun Pictures - by: Jasoncredible</title>
            <link>http://hawaiiairsoft.us/index.php/forum/15-general/186-your-gun-pictures?limit=6&amp;start=12#921</link>
            <description>Nice weapons you got there.  I can not wait to see your SR12 and what you have on it.  Still breaking in my SR12 and I have to head to storage to go and grab my old m16a2 rail mounts and gangster grip.  When all that is done I will post mine</description>
            <pubDate>Sun, 05 Sep 2010 23:48:27 -1000</pubDate>
        </item>
        <item>
            <title>Subject: Misc Airsoft For sale - by: 808Bento</title>
            <link>http://hawaiiairsoft.us/index.php/forum/7-for-sale-traded-or-wanted/903-misc-airsoft-for-sale#917</link>
            <description>Can you send a picture of the glock? How old is it?</description>
            <pubDate>Sun, 05 Sep 2010 20:45:52 -1000</pubDate>
        </item>
        <item>
            <title>Subject: SELLING KJW GAS M4 WITH 1 MAG!!! - by: 808Bento</title>
            <link>http://hawaiiairsoft.us/index.php/forum/7-for-sale-traded-or-wanted/896-selling-kjw-gas-m4-with-1-mag#916</link>
            <description>3 Mags were sold, so now the gun w/ 1 mag is for sale!</description>
            <pubDate>Sun, 05 Sep 2010 20:43:10 -1000</pubDate>
        </item>
        <item>
            <title>Subject: Hollywood Shoot Out - by: Jasoncredible</title>
            <link>http://hawaiiairsoft.us/index.php/forum/8-scenarios/912-hollywood-shoot-out#912</link>
            <description>Dose anyone still play that any more.  I remember playing that in the mainland with some friends a long time ago.

scenario- 
        *urban area setting with a lot of buildings
        *there is one team of 2 and a team of 10-15
        *the team of 2 has high powered AEG's rifles 
        *the other team only uses pistols
        *the team of 2 has to stay close to the wall/</description>
            <pubDate>Sun, 05 Sep 2010 10:42:23 -1000</pubDate>
        </item>
        <item>
            <title>Subject: Airsoft Megastore? - by: LoneWolf808</title>
            <link>http://hawaiiairsoft.us/index.php/forum/18-online-retailers/620-airsoft-megastore#906</link>
            <description>I have stumbled across Airsoft Megastore as well, have not ordered from them yet, but they do look legit, btw looking fowards to that KAR98K Gun review!</description>
            <pubDate>Thu, 02 Sep 2010 13:39:26 -1000</pubDate>
        </item>
        <item>
            <title>Subject: Nimitz vs. Nanakuli - by: Kameleon</title>
            <link>http://hawaiiairsoft.us/index.php/forum/15-general/751-nimitz-vs-nanakuli?limit=6&amp;start=12#901</link>
            <description>Wait till the grass starts growing! It will be pandamonium FINDING your opponents!

 ;)</description>
            <pubDate>Wed, 01 Sep 2010 21:34:56 -1000</pubDate>
        </item>
    </channel>
</rss>
