Posted by cric Mon 19th Mar 2007 10:33 - Syntax is JavaScript - 24 views
Download | New Post | Modify | Hide line numbers
  1. Cricket Web<span class="st0">'s Fantasy Cricket - Modify Team</span>
  2.  
  3.  
  4.  
  5.  
  6.  
  7. You have Javascript disabled. To submit your team please enable Javascript in your browser.
  8.  
  9.  
  10.  
  11.  
  12. var NumberTimesChanged = 0;
  13. var Budget = 0
  14. function clearBudget() {
  15.      Budget = 0
  16. }
  17.  
  18.  
  19. function lock()
  20.  
  21. {
  22.  
  23.  
  24. }
  25.  
  26. function showstatspsiderpage(playeridauto)
  27. {
  28.     if ((playeridauto == "-------------------------------------------") || (playeridauto == ""))
  29.     {
  30.          alert('Please select a player');
  31.          return false;
  32.     }
  33.  
  34.       url="statsspider.php?PlayerIDAuto=" + playeridauto;
  35.       window.open(url);
  36. }
  37.  
  38. function changeTextToBlack() {
  39.       modifyteam.total.style.color = "black";
  40.     modifyteam.total.style.fontWeight = "normal"
  41. }
  42.  
  43. function checkscore(playernameindex,fieldname)
  44. {
  45.  
  46.      //NumberTimesChanged = NumberTimesChanged + 1;
  47.      //if (NumberTimesChanged > 1)
  48.      //{
  49.      //    this.blur();
  50.      //    alert('You can only change a player once. Your team will be reset to the way it was when the page loaded.');
  51.      //    window.location.reload();
  52.      //}
  53.  
  54.  
  55.   PlayerName = modifyteam.elements[fieldname].options[playernameindex].text;
  56.   ScoreFieldName = "score" + fieldname;
  57.   PositionOriginalPoint = fieldname + "OriginalPoint";
  58.  
  59. var PlayerA = 15;
  60. var PlayerB = 13;
  61. var PlayerC = 11;
  62. var PlayerNo = 0;
  63. var PlayerD = 9;
  64. var PlayerE = 7;
  65. var PlayerF = 5;
  66. var PlayerG = 3;
  67.  
  68. //get the previous point each position has before changing
  69. modifyteam.elements[PositionOriginalPoint].value = modifyteam.elements[ScoreFieldName].value;
  70.  
  71.  
  72.   if (PlayerName.charAt(0) == "A") {
  73.     modifyteam.elements[ScoreFieldName].value = PlayerA;
  74.    }
  75.   else if (PlayerName.charAt(0) == "B") {
  76.     modifyteam.elements[ScoreFieldName].value = PlayerB;
  77.    }
  78.   else if (PlayerName.charAt(0) == "C") {
  79.     modifyteam.elements[ScoreFieldName].value = PlayerC;
  80.    }
  81.   else if (PlayerName.charAt(0) == "D") {
  82.     modifyteam.elements[ScoreFieldName].value = PlayerD;
  83.    }
  84.   else if (PlayerName.charAt(0) == "E") {
  85.     modifyteam.elements[ScoreFieldName].value = PlayerE;
  86.    }
  87.   else if (PlayerName.charAt(0) == "F") {
  88.     modifyteam.elements[ScoreFieldName].value = PlayerF;
  89.    }
  90.   else if (PlayerName.charAt(0) == "G") {
  91.     modifyteam.elements[ScoreFieldName].value = PlayerG;
  92.    }
  93.   else {
  94.     modifyteam.elements[ScoreFieldName].value = PlayerNo;
  95.    }
  96.  
  97.   modifyteam.total.value = Budget + (parseInt(modifyteam.elements[PositionOriginalPoint].value) - parseInt(modifyteam.elements[ScoreFieldName].value));
  98.   Budget = parseInt(modifyteam.total.value);
  99.  
  100.   if (modifyteam.total.value < 0) {
  101.      modifyteam.total.style.color = "red"
  102.      modifyteam.total.style.fontWeight = "bold"
  103.      alert('You have used up all your allocated player points! Please select some other players');
  104.   }
  105.   else {
  106.      changeTextToBlack();
  107.  
  108.   }
  109. }
  110.  
  111.  
  112. function validation() {
  113.  
  114.     if (modifyteam.TeamName.value == "") {
  115.         alert('Please enter Team Name');
  116.         modifyteam.TeamName.focus();
  117.         return false;
  118.     }
  119.  
  120.     var badWordReg = /spam|punk|anal|arse|assy|babe|bastard|bitch|bollocks|bondage|booger|booze|breast|butthead|clit|cock|crack|crap|crotch|cunt|daemon|death|diddle|dildo|dink|dong|dork|dyke|fag|fart|felch|flame|foxy|foxxy|fooxy|gangbang|gurl|hacker|hate|honkey|hooker|hostmaster|hottie|hotty|hummer|jerk|jizzum|jugs|junk|kill|kinky|knocker|libido|loser|mariguana|milf|moist|munch|nasty|nibble|nigger|nipple|nookey|nympho|pecker|peep|penis|pedophile|phallic|pimp|piss|poontang|poop|porn|psycho|pubes|pubic|pussy|queef|queer|quim|sassy|schlong|screw|sex|slapper|slut|spam|spank|sperm|spooge|spunk|squirt|stiffy|stooge|strip|subscri|suck|tits|tittie|titty|trash|tramp|transvestite|turd|twap|vagina|virus|viruz|wanker|wasted|weed|whack|whore|willie|willy|woody|wuss|zipper|zomby|fuck|fucking|shit|git|twat|dick/i
  121.  
  122.      if (badWordReg.test(document.modifyteam.TeamName.value))
  123.      {
  124.         alert ("You entered a word that is considered offensive or is not allowed.")
  125.         document.modifyteam.TeamName.focus()
  126.         return false;
  127.       }
  128.  
  129.  
  130.     p0 = modifyteam.Opener1.selectedIndex;
  131.     p1 = modifyteam.Opener2.selectedIndex;
  132.     p2 = modifyteam.Bat1.selectedIndex;
  133.     p3 = modifyteam.Bat2.selectedIndex;
  134.     p4 = modifyteam.Bat3.selectedIndex;
  135.     p5 = modifyteam.WK.selectedIndex;
  136.     p6 = modifyteam.AR1.selectedIndex;
  137.     p7 = modifyteam.Bowl1.selectedIndex;
  138.     p8 = modifyteam.Bowl2.selectedIndex;
  139.     p9 = modifyteam.Bowl3.selectedIndex;
  140.     p10 = modifyteam.Bowl4.selectedIndex;
  141.  
  142.  
  143.     p = new Array();
  144.  
  145.     p = modifyteam.Opener1.options[p0].text;
  146.     p = modifyteam.Opener2.options[p1].text;
  147.     p = modifyteam.Bat1.options[p2].text;
  148.     p = modifyteam.Bat2.options[p3].text;
  149.     p = modifyteam.Bat3.options[p4].text;
  150.     p = modifyteam.WK.options[p5].text;
  151.     p = modifyteam.AR1.options[p6].text;
  152.     p = modifyteam.Bowl1.options[p7].text;
  153.     p = modifyteam.Bowl2.options[p8].text;
  154.     p = modifyteam.Bowl3.options[p9].text;
  155.     p[10] = modifyteam.Bowl4.options[p10].text;
  156.  
  157.     for (i = 0; i<11; i++) {
  158.          playerevaluated = p[i];
  159.          for (j = 0; j<11; j++) {
  160.              playercomparison = p[j];
  161.              if (playerevaluated == playercomparison && i != j) {
  162.                  alert("You have selected the same player more than once! Please choose 11 unique players!");
  163.                  return false;
  164.              }
  165.          }
  166.     }
  167.  
  168.     if (modifyteam.total.value < 0) {
  169.       alert('You have used up all your allocated player points! Please select some other players');
  170.       return false;
  171.     }
  172.  
  173.     if (modifyteam.scoreOpener1.value == "0" || modifyteam.Opener1.value == "-------------------------------------------") {
  174.         alert('Please enter Bat 1');
  175.         modifyteam.scoreOpener1.focus();
  176.         return false;
  177.     }
  178.     else if (modifyteam.scoreOpener2.value == "0" || modifyteam.Opener2.value == "-------------------------------------------") {
  179.         alert('Please enter Bat 2');
  180.         modifyteam.scoreOpener2.focus();
  181.         return false;
  182.     }
  183.     else if (modifyteam.scoreBat1.value == "0" || modifyteam.Bat1.value == "-------------------------------------------") {
  184.         alert('Please enter Bat 3');
  185.         modifyteam.scoreBat1.focus();
  186.         return false;
  187.     }
  188.     else if (modifyteam.scoreBat2.value == "0" || modifyteam.Bat2.value == "-------------------------------------------") {
  189.         alert('Please enter Bat 4');
  190.         modifyteam.scoreBat2.focus();
  191.         return false;
  192.     }
  193.     else if (modifyteam.scoreBat3.value == "0" || modifyteam.Bat3.value == "-------------------------------------------") {
  194.         alert('Please enter Bat 5');
  195.         modifyteam.scoreBat3.focus();
  196.         return false;
  197.     }
  198.     else if (modifyteam.scoreWK.value == "0" || modifyteam.WK.value == "-------------------------------------------") {
  199.         alert('Please enter Wicketkeeper');
  200.         modifyteam.scoreWK.focus();
  201.         return false;
  202.     }
  203.     else if (modifyteam.scoreAR1.value == "0" || modifyteam.AR1.value == "-------------------------------------------") {
  204.         alert('Please enter Allrounder');
  205.         modifyteam.scoreAR1.focus();
  206.         return false;
  207.     }
  208.     else if (modifyteam.scoreBowl1.value == "0" || modifyteam.Bowl1.value == "-------------------------------------------") {
  209.         alert('Please enter Bowler 1');
  210.         modifyteam.scoreBowl1.focus();
  211.         return false;
  212.     }
  213.     else if (modifyteam.scoreBowl2.value == "0" || modifyteam.Bowl2.value == "-------------------------------------------") {
  214.         alert('Please enter Bowler 2');
  215.         modifyteam.scoreBowl2.focus();
  216.         return false;
  217.     }
  218.     else if (modifyteam.scoreBowl3.value == "0" || modifyteam.Bowl3.value == "-------------------------------------------") {
  219.         alert('Please enter Bowler 3');
  220.         modifyteam.scoreBowl3.focus();
  221.         return false;
  222.     }
  223.     else if (modifyteam.scoreBowl4.value == "0" || modifyteam.Bowl4.value == "-------------------------------------------") {
  224.         alert('Please enter Bowler 4');
  225.         modifyteam.scoreBowl4.focus();
  226.         return false;
  227.     }
  228.     else {
  229.         return true;
  230.     }
  231.  
  232. }
  233.  
  234.  
  235.  
  236.  
  237. jpg','images/logoff_btn_rollo.jpg','images/register_btn_rollo.jpg')">


  238.    
  239.  
  240.        
  241.  
  242.    
  243. google_ad_client = "pub-1837039416635848";
  244. google_ad_width = 728;
  245. google_ad_height = 15;
  246. google_ad_format = "728x15_0ads_al";
  247. //2006-12-02: cricketweb.net
  248. google_ad_channel = "7466345069";
  249. google_color_border = "99AACC";
  250. google_color_bg = "99AACC";
  251. google_color_link = "000000";
  252. google_color_text = "003366";
  253. google_color_url = "000099";
  254. //-->
  255.   src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
  256.    
  •  
  • _uacct = "UA-347017-1";
  • urchinTracker();
  •  
  •  
  •    
  •  
  •    
  •  
  •    
  •     100%;" cellpadding="0" cellspacing="2">
  •        
  •            
  •  
  •            
  •  
  •            
  •  
  •            
  •  
  •            
  •  
  •            
  •  
  •            
  •  
  •            
  •  
  •            
  •  
  •        
  •  
  •    
  •             php" class="general_main_menu_text_horz">
    " onMouseOver="rolloverMenu(this);" onMouseOut="rolloutMenu(this);">//www.cricketweb.net/fantasycricket/images/transparent_menu_shim.gif" border=0 align="middle">Home
  •            
  •            
  •            
  •            
  •            
  •  
  •            
  •            
  •  
  •            
  •            
  •    
  •  
  •    
  •     "width: 100%;" cellpadding="0" cellspacing="2">
  •        
  •            
  •  
  •                        
  •            
  •  
  •  
  •            
  •            
  • class="general_left_column" valign="top">
  •                
  •                
    class="L2_logged_in_manage_your_team">
  •                     "images/menu_titles/manage_your_team_title.gif" width="96" height="25"  alt="Manage Your Teams">
  •  
  •                    
  •                    
  •                    
  •                    
  •  
  •                    
  •                    
  •                    
  •  
  •                    
  •                    
  •                    
  •                  
  •  
  •                
  •                
    "images/blue_shim.gif">
  •  
  •                                    
  •                    
    class="L2_logged_in_your_current_team">
  •                         "images/menu_titles/your_current_teams_title.gif" width="103" height="25" alt="Your Current Teams">
  •                        
  •                        
  •  
  •  
  •                    
  •                    
  •  
  •                    
    "images/blue_shim.gif">
  •  
  •                            
  • "top">
  •  
  •                
  •                
    class="general_page_title">
  •                   "images/page_titles/modify_team_title.gif" width="400" height="20" alt="Modify Team">
  •                
  •                
  •  
  •                
  •                
    class="general_page_content">
  •                    
  •  
  •                            
  •  
  •                             Your current team is show below. To modify your team simply decide whom you wish to replace and select a replacement from that position's drop-down menu. There is a link to Stats Spider to assist you on players roles and playing record.
  •                            
  •                            
  •                                                             Your remaining competition transfers are shown below along with the value of a captaincy change if you wish to make one.

  •                                                         Your remaining team budget is shown at the bottom of your team that you must still remain within.
  •                            
  •                            
  •                             You are modifying team Highway Troopers in competition World Cup 2007 and are allowed
  •  
  •                                                             to make 20 modification(s):
  •                                
  •  
  •                                
  •                                 Player - 20 modification
  •                                
  •                                 Player replacement (i.e. injuries, etc) -  0 modification
  •                                
    Captaincy - each captaincy change will cost you 4 modifications, e.g. if you have 12 modifications left, a change of captaincy will leave you with 8 modifications.                           
  •                            
  •  
  •  
  •                            
  •  
  •                            
  •  
  •                            
  •                            
  •                            
  •  
  •                            
  •  
  •                            
  •                            
  •                            
  •                            
  •  
  •                            
  •                            
  •                            
  •                            
  •  
  •                            
  •                            
  •                            
  •                            
  •  
  •                            
  •                            
  •                            
  •                            
  •  
  •                            
  •                            
  •                            
  •                            
  •  
  •                            
  •                            
  •                            
  •                            
  •  
  •                            
  •                                
  •                                
  •                                
  •                                
  •  
  •                                
  •                                
  •                                
  •                                
  •  
  •                            
  •  
  •                            
  •                            
  •                            
  •                            
  •  
  •                            
  •                            
  •                            
  •                            
  • Team Name:
  •                              Choose Captain and Stats Spider Link
  •  
  •                            
  • Bat 1:
  •                            
  •                                    
  •  
  •                                    
  •  
  •                              
  •                              
  •  
  •                                    
  •                                                                            
  •                                    
  •                             </span>Stats Spider Player Profile<span class="st0">
  •  
  •                            
  • Bat 2:
  •                                
  •                                    
  •                                    
  •  
  •                              
  •                              
  •  
  •                                    
  •                                                                            
  •                                    
  •                             </span>Stats Spider Player Profile<span class="st0">
  •  
  •                            
  • Bat 3:
  •  
  •                            
  •                                    
  •                                    
  •  
  •                              
  •                              
  •  
  •                                    
  •                                                                            
  •                                    
  •                             </span>Stats Spider Player Profile<span class="st0">
  •  
  •                            
  • Bat 4:
  •  
  •                        
  •                                    
  •                                    
  •  
  •                            
  •                            
  •  
  •                                    
  •                                                                            
  •                                    
  •                             </span>Stats Spider Player Profile<span class="st0">
  •  
  •                            
  • Bat 5:
  •  
  •                            
  •                                    
  •                                    
  •  
  •                              
  •                              
  •  
  •  
  •                                    
  •                                                                            
  •                                    
  •                             </span>Stats Spider Player Profile<span class="st0">
  •  
  •                            
  • Wicketkeeper:
  •  
  •                            
  •                                    
  •                                    
  •  
  •                            
  •                            
  •  
  •                                    
  •                                                                            
  •                                    
  •                             </span>Stats Spider Player Profile<span class="st0">
  •  
  •                            
  • AR 1:
  •  
  •                                        
  •                                        
  •                                        
  •  
  •                              
  •                              
  •  
  •                                        
  •                                                                                    
  •                                        
  •                                 </span>Stats Spider Player Profile<span class="st0">
  •  
  •                                
  • AR 2:
  •  
  •                                
  •                                        
  •                                        
  •  
  •                                
  •                                
  •  
  •                                        
  •                                                                                    
  •                                        
  •                                 </span>Stats Spider Player Profile<span class="st0">
  •  
  •                                
  • Bowler 1:
  •  
  •  
  •                            
  •                                    
  •                                    
  •  
  •                              
  •                              
  •  
  •                                    
  •                                                                            
  •                                    
  •                             </span>Stats Spider Player Profile<span class="st0">
  •  
  •                            
  • Bowler 2:
  •  
  •                            
  •                                    
  •                                    

  • PermaLink to this entry https://pastebin.co.uk/12036
    Posted by cric Mon 19th Mar 2007 10:33 - Syntax is JavaScript - 24 views
    Download | New Post | Modify | Hide line numbers

     

    Comments: 0