JavaScript Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsWeb DesignJavaScript Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old July 31st, 2007, 10:34 AM
luckybwild luckybwild is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2005
Posts: 149 luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 21 h 10 m 37 sec
Reputation Power: 12
String in array statement not working

Depending on the combinations of checkboxes i choose, different message will appear to the user. I think the main problem is how i am declaring the if .. then statements where the condition is 'something' in cvals && 'something else' in cvals.

The goal of this script is to obtain values from the checkboxes when they are checked and the values are put into an array. If the array contains certain combinations of 'key words' then a certain message will appear.

Here is the javascript:

Javascript Code:
Original - Javascript Code
  1. function checkClick() {
  2.    
  3.     var message;
  4.    
  5.     var cvals = new Array();
  6.    
  7.     var x = document.escorial.getElementsByTagName('input');
  8.    
  9.     var aa = document.escorial.identGene;
  10.    
  11.     // Loop for all checkboxes in form named escorial
  12.     for ( var i = 0; i < x.length; i++ ) {
  13.        
  14.         if ( x.type == 'checkbox' ) {
  15.            
  16.             if ( x[i].checked ) {
  17.                
  18.                 cvals.push(x[i].name && x[i].value);
  19.             }
  20.         }
  21.     }
  22.    
  23.     // If statement for radio button.
  24.     if ( aa.value == 'Yes' ) {
  25.        
  26.         cvals.push(aa.name && aa.value);
  27.     }   
  28.  
  29.     //Begins the if statements determining the message
  30.     if ( 'Upper Motor Neuron' in cvals && 'Lower Motor Neuron' in cvals && (('bulbar' in cvals && 'cervical' in cvals && 'thoracic' in cvals) || ('bulbar' in cvals && 'cervical' in cvals && 'lumbosacral' in cvals)) ) {
  31.        
  32.         message = 'Definate ALS';
  33.     }
  34.    
  35.     else if ( 'Upper Motor Neuron' in cvals && 'Lower Motor Neuron' in cvals && 'bulbar' in cvals ) {
  36.        
  37.         message = 'Probable ALS';
  38.     }
  39.    
  40.     else if ( 'Upper Motor Neuron' in cvals && 'Lower Motor Neuron' in cvals && 'EMG' in cvals ) {
  41.        
  42.         message = 'Probable ALS, Lab Supported';
  43.     }
  44.    
  45.     else if ( 'Upper Motor Neuron' in cvals && 'Lower Motor Neuron' in cvals && 'Yes' ) {
  46.        
  47.         message = 'Definite Familial ALS, Lab Supported';
  48.     }
  49.    
  50.     else if ( 'Upper Motor Neuron' in cvals && 'Lower Motor Neuron' in cvals ) {
  51.        
  52.         message = 'Possible ALS';
  53.     }
  54.    
  55.     else if ( 'Upper Motor Neuron' in cvals || 'Lower Motor Neuron' in cvals ) {
  56.        
  57.         message = 'Suspected ALS';
  58.     }
  59.    
  60.     else {
  61.        
  62.         message = '';
  63.     }
  64.  
  65.     //Redisplays the message with the html
  66.     document.getElementById('message').innerHTML = message;
  67. }

Last edited by luckybwild : July 31st, 2007 at 10:38 AM.

Reply With Quote
  #2  
Old July 31st, 2007, 10:49 AM
Ebot's Avatar
Ebot Ebot is offline
Meatball Surgeon
Dev Shed Regular (2000 - 2499 posts)
 
Join Date: Jul 2004
Location: Elbow deep in code
Posts: 2,056 Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)  Folding Points: 87885 Folding Title: Advanced FolderFolding Points: 87885 Folding Title: Advanced FolderFolding Points: 87885 Folding Title: Advanced FolderFolding Points: 87885 Folding Title: Advanced FolderFolding Points: 87885 Folding Title: Advanced Folder
Time spent in forums: 2 Weeks 3 Days 7 h 58 m 28 sec
Reputation Power: 1319
So what problem are you running into?
__________________
Three gigs for the secretaries fair
Seven gigs for the system source
Nine gigs for the coders in smoky lairs
One disk to rule them all, one disk to bind them
One disk to hold the files, and in the darkness grind'em
---------------------------------------------------
It is by caffeine alone that I set my mind in motion.
It is by the beans of Java, that my thoughts acquire speed.
The hand acquire shakes; the shakes become a warning.
It is by caffeine alone that I set my mind in motion.

Reply With Quote
  #3  
Old July 31st, 2007, 10:55 AM
luckybwild luckybwild is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2005
Posts: 149 luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 21 h 10 m 37 sec
Reputation Power: 12
nothing happens when i click the checkboxes. even the (most basic) last else if statement stating:

else if ( 'Upper Motor Neuron' in cvals || 'Lower Motor Neuron' in cvals )

doesn't work. That would output a message if i click one of the checkboxes that has a value of either UMN or LMN should it not?

Reply With Quote
  #4  
Old July 31st, 2007, 11:12 AM
Ebot's Avatar
Ebot Ebot is offline
Meatball Surgeon
Dev Shed Regular (2000 - 2499 posts)
 
Join Date: Jul 2004
Location: Elbow deep in code
Posts: 2,056 Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)Ebot User rank is General 5th Grade (Above 100000 Reputation Level)  Folding Points: 87885 Folding Title: Advanced FolderFolding Points: 87885 Folding Title: Advanced FolderFolding Points: 87885 Folding Title: Advanced FolderFolding Points: 87885 Folding Title: Advanced FolderFolding Points: 87885 Folding Title: Advanced Folder
Time spent in forums: 2 Weeks 3 Days 7 h 58 m 28 sec
Reputation Power: 1319
I think it is you giant if statement of doom (however, it looked OK) did you verify that there was data in your array?

Reply With Quote
  #5  
Old July 31st, 2007, 12:46 PM
luckybwild luckybwild is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2005
Posts: 149 luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 21 h 10 m 37 sec
Reputation Power: 12
either i can't display an array properly, or the function just hangs.

i simply put document.write(cvals); and when i check a box it goes blank and shows that its loading something, but doesn't do anything

Reply With Quote
  #6  
Old July 31st, 2007, 04:57 PM
Kravvitz's Avatar
Kravvitz Kravvitz is offline
CSS & JS/DOM Adept
Dev Shed God 30th Plane (19500 - 19999 posts)
 
Join Date: Jul 2004
Location: USA
Posts: 19,893 Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level) 
Time spent in forums: 6 Months 2 Days 18 h 35 m 4 sec
Reputation Power: 4192
1) You're using the "in" operator incorrectly. I recommend that you use Array.indexOf() instead. You'll need to use the function posted on that page to support browsers that don't support that method of Array yet.

2) Why are you doing the following and what do you expect the result to be?
Code:
cvals.push(x[i].name && x[i].value);

3) document.write() can only be used while the page is loading -- if it isn't it will replace the page with what ever it writes out. The Document Object Model (DOM) can be used to add elements, text, etc. to the page without reloading it.
__________________
Spreading knowledge, one newbie at a time. I'm available for hire at Dynamic Site Solutions.

Check out my blog. | Learn CSS. | PHP includes | X/HTML Validator | CSS validator | Common CSS Mistakes | Common JS Mistakes

Remember people spend most of their time on other people's sites (so don't violate web design conventions).

Reply With Quote
  #7  
Old July 31st, 2007, 05:26 PM
luckybwild luckybwild is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2005
Posts: 149 luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 21 h 10 m 37 sec
Reputation Power: 12
yea i had initially set:

document.getElementById('message').innerHTML = message;

to get the message displayed, but nothing happens.

my main thing i want to do is somehow store all the values that have been set (by checking) and if certain values are stored in the array then different messages will be displayed.

i will look into that link you gave me.

Reply With Quote
  #8  
Old July 31st, 2007, 05:32 PM
luckybwild luckybwild is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2005
Posts: 149 luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 21 h 10 m 37 sec
Reputation Power: 12
I realize my

cvals.push(x[i].name && x[i].value);

isn't very helpful. I should probably do something like:

cvals[i] = x.name ', ' x.value;

would that work just as well?

Reply With Quote
  #9  
Old July 31st, 2007, 05:36 PM
Kravvitz's Avatar
Kravvitz Kravvitz is offline
CSS & JS/DOM Adept
Dev Shed God 30th Plane (19500 - 19999 posts)
 
Join Date: Jul 2004
Location: USA
Posts: 19,893 Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level) 
Time spent in forums: 6 Months 2 Days 18 h 35 m 4 sec
Reputation Power: 4192
Code:
cvals.push(x[i].name && x[i].value);

will have the same result as
Code:
cvals.push(x[i].value);

perhaps you want
Code:
cvals.push(x[i].name+', '+x[i].value);

Reply With Quote
  #10  
Old July 31st, 2007, 05:39 PM
luckybwild luckybwild is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2005
Posts: 149 luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 21 h 10 m 37 sec
Reputation Power: 12
yea i need both the value and the name because both factors affect which message is displayed.

Reply With Quote
  #11  
Old July 31st, 2007, 05:56 PM
luckybwild luckybwild is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2005
Posts: 149 luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 21 h 10 m 37 sec
Reputation Power: 12
i changed it to:

Javascript Code:
Original - Javascript Code
  1. cvals.push(x[i].name + ', ' + x[i].value);


but still no message. the last line that i relay the message to is <span id="message"></span>. and i have onclick = "checkClick()" within each checkbox tag as well as the radio button.

does everything you think make at least logical sense?

Reply With Quote
  #12  
Old July 31st, 2007, 06:04 PM
luckybwild luckybwild is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2005
Posts: 149 luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 21 h 10 m 37 sec
Reputation Power: 12
i am trying out the indexOf function right now.

Reply With Quote
  #13  
Old August 1st, 2007, 08:49 AM
luckybwild luckybwild is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2005
Posts: 149 luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 21 h 10 m 37 sec
Reputation Power: 12
So i started messing around with the indexOf function and I finally get a message when i click a checkbox, but it displays the message only because the value of indices > -1.

I need to make each 'indices' variable exclusive to each string i.e 'Lower Motor Neuron', 'Upper Motor Neuron' .. etc. Since the while loop is set up to stop after lmn > -1 i don't get a true count of many of the indices of the string their are. I will mess around some more, but just throwing it out there. Thanks

Reply With Quote
  #14  
Old August 1st, 2007, 09:00 AM
luckybwild luckybwild is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2005
Posts: 149 luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level)luckybwild User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 21 h 10 m 37 sec
Reputation Power: 12
sorry forgot the code:

Javascript Code:
Original - Javascript Code
  1. function checkClick() {
  2.    
  3.     var message;
  4.    
  5.     var cvals = new Array();
  6.    
  7.     var x = document.escorial.getElementsByTagName('input');
  8.    
  9.     var aa = document.escorial.identGene;
  10.    
  11.     // Loop for all checkboxes in form named escorial
  12.    
  13.     if ( x.type == 'checkbox' ) {
  14.        
  15.         for ( var i = 0; i < x.length; i++ ) {
  16.            
  17.             if ( x[i].checked == true) {
  18.                
  19.                 cvals.push(x[i].name + ', ' + x[i].value);
  20.             }
  21.         }
  22.     }
  23.    
  24.     // If statement for radio button.
  25.     if ( aa.value == 'Yes' ) {
  26.        
  27.         cvals.push(aa.name && aa.value);
  28.     }
  29.    
  30.     // Find all indices
  31.     var indices = [];
  32.    
  33.     var lmn = cvals.indexOf('Lower Motor Neuron')
  34.    
  35.     while (lmn > -1) {
  36.        
  37.         indices.push(lmn);
  38.         lmn = cvals.indexOf('Lower Motor Neuron', lmn + 1);
  39.     }
  40.    
  41. //      var indices1 = [];
  42. // 
  43. //  var umn = cvals.indexOf('Upper Motor Neuron')
  44. // 
  45. //  while (umn) {
  46. //   
  47. //    indices1.push(umn);
  48. //    umn = cvals.indexOf('Upper Motor Neuron', umn + 1);
  49. //  }
  50.    
  51.        
  52.        
  53.            
  54.    
  55. //Begins the if statements determining the message
  56. //  if ( 'Upper Motor Neuron' in cvals && 'Lower Motor Neuron' in cvals && (('bulbar' in cvals && 'cervical' in cvals && 'thoracic' in cvals) || ('bulbar' in cvals && 'cervical' in cvals && 'lumbosacral' in cvals)) ) {
  57. //   
  58. //    message = 'Definate ALS';
  59. //  }
  60. // 
  61. //  else if ( 'Upper Motor Neuron' in cvals && 'Lower Motor Neuron' in cvals && 'bulbar' in cvals ) {
  62. //   
  63. //    message = 'Probable ALS';
  64. //  }
  65. // 
  66. //  else if ( 'Upper Motor Neuron' in cvals && 'Lower Motor Neuron' in cvals && 'EMG' in cvals ) {
  67. //   
  68. //    message = 'Probable ALS, Lab Supported';
  69. //  }
  70. // 
  71. //  else if ( 'Upper Motor Neuron' in cvals && 'Lower Motor Neuron' in cvals && 'Yes' ) {
  72. //   
  73. //    message = 'Definite Familial ALS, Lab Supported';
  74. //  }
  75.    
  76.      if ( indices > 0 ) {
  77.        
  78.         message = 'Possible ALS';
  79.     }
  80.    
  81.     else if ( indices > -1 ) {
  82.        
  83.         message = 'Suspected ALS';
  84.     }
  85.    
  86.     else {
  87.        
  88.         message = '';
  89.     }
  90.  
  91.     //Redisplays the message with the html
  92.    
  93.     document.getElementById('message').innerHTML = message;
  94.    
  95. }

Reply With Quote
  #15  
Old August 1st, 2007, 03:02 PM
Kravvitz's Avatar
Kravvitz Kravvitz is offline
CSS & JS/DOM Adept
Dev Shed God 30th Plane (19500 - 19999 posts)
 
Join Date: Jul 2004
Location: USA
Posts: 19,893 Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level) 
Time spent in forums: 6 Months 2 Days 18 h 35 m 4 sec
Reputation Power: 4192
Huh? You seem to be confused.

The index does not matter here. You just need to check if it's -1 or not to see if the string exists in the array.

Reply With Quote
Reply

Viewing: Dev Shed ForumsWeb DesignJavaScript Development > String in array statement not working

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap