Witam, więc na początku chciałem zaznaczyć, że jestem kompletnym laikiem, nic nie wiem o programowaniu, ale piszę by się dowiedzieć, czy mój problem jest w ogóle do rozwiązania.
Chodzi o program inwestycyjny Profit Clic.king.
Problem polega na tym, że żeby wypłacić z niego zarobione przez siebie pieniądze musimy trafić na otwartą bramkę. Otwiera się ona w różnych godzinach nie do przewidzenia. I chciałem się zapytać czy jest możliwe napisane jakiegoś skryptu który co kilka sekund sprawdzał by status strony czy jest aktywne wypłacanie.
Tak wygląda kod po kliknięciu na źródło strony:

 <script type="text/javascript">
    $(function(){

        $(".global_menu_holder > a").click(function(){
            return false;
        });

        $(".global_menu_holder").hover(function(){
            $(this).find(".global_submenu").fadeIn(100);
        },
        function(){
            $(this).find(".global_submenu").hide();
        });

        $("#translate_main_nav").click(function(){
            $("#SKYUI-Mod-Translate").click();
            return false;
        });

        $('#social_media_tabs').dcSocialTabs({
            widgets: 'twitter,facebook,fblike,youtube,vimeo,google,linkedin,flickr,delicious,pinterest,dribbble,stumbleupon',
            twitterId: 'ProfitClicking',
            facebookId: '436794926332727',
            fblikeId: '436794926332727',
            fbrecId: 'http://www.facebook.com/clickforprofits',
            youtubeId: 'ProfitClicking',
            vimeoId: 'profitclicking',
            googleId: '101421470225030682707',
            linkedinId: '2748825',
            flickrId: '86432180@N05',
            deliciousId: 'profitclicking',
            /* diggId: '@ProfitClicking',no actual ID for current account */
            pinterestId: 'ProfitClicking',
            /* instagramId: '', no instagram as of yet */
            dribbbleId: 'ProfitClicking',
            stumbleuponId: 'paulmannington',

            rss: {
                text: 'content'
            },
            facebook: {
                text: 'content'
            },
            twitter: {
                thumb: true
            },
            vimeo: {
                feed: 'all_videos'
            },
            dribbble: {
                feed: 'likes'
            }
        });

        $(".dcsmt-vimeo").mouseup(function(){
            setTimeout(function(){
                $("#dcsmt-1-vimeo").after("<div id='vimeo_rss_feed'></div>");
                $("#dcsmt-1-vimeo").remove();

                $('#vimeo_rss_feed').rssfeed('http://vimeo.com/channels/417686/videos/rss', {
                            limit: 4,
                            dateformat: 'date',
                            linktarget: '_blank'
                        },
                        function(){$(".rssMedia").find("a").each(function(){
                            //$(this).attr("rel","prettyPhoto");
                            $(this).html("Watch Video");
                            $(".rssMedia").html("");
                        });
                            //$("a[rel^='prettyPhoto']").prettyPhoto({social_tools:false, theme:'light_square'});
                        });
            },500);
        });


    });
</script>
        
<div class="pageheader_green">
	<div class="headergraphic_green">
		<div class="container_12">
       <div class="bannertext">Withdraw Funds</div>
    </div>
 	</div>  
</div>

<div class="main">
	<div class="container_12">

        <h2>Withdraw Funds from <span class="processorName"></span> - Beta Testing is Currently in Effect</h2>

  <p><b><a href="http://www.profitclicking.com/faqs?#basicFAQ" target="_blank">Before withdrawing, please read our FAQ About our <i>NEW</i> Withdrawal System</a></b></p>

  <div class="withdrawbox">
    <img class="loading" src="http://static.profitclicking.com/loading/22.gif" />
    <form id="withdrawForm">
      <div class="ui-state-highlight ui-corner-all" style="width: 660px; margin: 20px; padding: 0 .7em;"> 
					<div style="float: left; padding: 10px; margin-top: 10px;"><img src="http://static.profitclicking.com/images/info.jpg"></div>
          <p>Consider <b><a style="color: #0000ff; text-decoration: underline;" href="/dashboard/adpackages/buy">Purchasing Additional Ad Packages</a></b> instead of withdrawing your funds to continue making daily profits!<br/>
          <i>The more Ad Packages you have, the more Daily Sales Profits you earn!</i></p>
  		</div>

      <div class="balanceSelect"></div>

      <p>Amount to withdraw: <input type="text" id="withdrawAmount" size="10"> <input type="submit" value="Withdraw Funds"></p>

      <p>Your funds will be sent to <span class="processorName"></span> account <b><span class="account"></span></b>. [<a href="/dashboard/profile/payprocessors">Change</a>]<br/>
      A fee of <b><span class="fee"></span>%</b> will be deducted from your requested withdrawal amount.</p>
      586016
    </form>
  </div>

	</div>
</div>


        <script type="text/javascript">
    var base_href=window.location.protocol + '//' + window.location.host;

var account=false;
var old_limit=0.00;
var new_limit=0.00;
var old_balance=0.00;
var new_balance=0.00;
var fee=false;
var processor=false;
var destination="bucket";

jQuery("form#withdrawForm").hide().submit( function(e){
  e.preventDefault();

  var source=jQuery("input:radio[name=sourceBalance]:checked").val();

  if ( typeof(source) == "undefined" || (source != "old" && source != "new") )
    source=jQuery("input[type=hidden][name=sourceBalance]").val(); // in case it's hidden

  if ( typeof(source) == "undefined" || (source != "old" && source != "new") )
    return alert('You did not select which balance you wish to withdraw from.');

  var amount=parseFloat(jQuery("input#withdrawAmount").val());
  if ( amount < 20 )
    return alert("You must withdraw at least $20");
  else if ( (source == "old" && amount > old_limit) || (source == "new" && amount > new_limit) )
    return alert("You can not withdraw that amount!");
  else {
    if ( confirm('Are you sure you wish to withdraw $' + amount + ' to  ' + processor + ' account "' + account + '"?') ) {
      jQuery(this).hide();
      jQuery("div.withdrawbox img.loading").show();

      jQuery.ajax({ url: window.location.href + '&from_ajax=1', dataType: 'json', data: {amount: amount, source: source, destination: destination, from_ajax: 1}, error: function(d,m,xhr){ console.log(m); alert('Error communicating with server, please try again later'); history.go(-1); }, success: function(data) {
        jQuery("div.withdrawbox img.loading").hide();
        if ( data && data.success ) {
          jQuery("div.withdrawbox").html("Your Withdraw Request of $" + data.amount + " (+ $" + data.fee + " fee) to " + data.processor_name + " account '" + data.account + "' was added to the withdraw " + data.destination + " successfully!<br><br>Withdrawals are processed in the order they were submitted, please expect a delay for previous withdraw requests to be processed before yours.<p><a href=\"/wallet\">Back</a></p>");
        } else if ( data.is_full ) {
          jQuery("<div id=\"choiceDialog\">" + data.error + "</div>").dialog({
            title: 'Daily Limit Reached',
            modal: true,
            resizeable: false,
            close: function(){ window.location.reload(); },
            buttons: {
              "Choose Different Processor": function(){
                window.location='/wallet';
              },
              "Proceed with Withdrawal": function(){
                destination="queue";
                jQuery(this).dialog("destroy");
                jQuery("form#withdrawForm").submit();
              }
            }
          });
        } else {
//          alert(data.error);
//          window.location.href=base_href+data.redirect;

//          console.log(data);
          jQuery("div.withdrawbox").html(data.error + "<br><p><a href=\"" + base_href+data.redirect + "\">Back</a></p>");
          jQuery("div.withdrawbox").show();
        }
      } });
    }
  }
});

jQuery(document).ready( function(){
  jQuery.ajax({ url: window.location.href + '&from_ajax=1', dataType: 'json', error: function(d,m,xhr){ console.log(m); alert('Error communicating with server, please try again later'); history.go(-1); }, success: function(data){
    var errors=false;

    if ( data.error ) errors=true; 
//    if ( data.redirect ) window.location=base_href + data.redirect;

    if ( data.old_limit ) old_limit=parseFloat(data.old_limit);
    if ( data.new_limit ) new_limit=parseFloat(data.new_limit);
    if ( data.old_balance ) old_balance=parseFloat(data.old_balance);
    if ( data.new_balance ) new_balance=parseFloat(data.new_balance);
    if ( data.fee_percent ) fee=parseFloat(data.fee_percent);
    if ( data.account ) account=data.account;
    if ( data.processor_name ) { processor=data.processor_name; }
  
      jQuery(".processorName").html(processor);
    if ( ! errors ) {
      jQuery(".old_limit").html(old_limit);
      jQuery(".new_limit").html(new_limit);
      jQuery(".old_balance").html(old_balance);
      jQuery(".new_balance").html(new_balance);

      var balanceBox='';
      if ( old_limit >= 20 && new_limit >= 20 ) {
        balanceBox='<p>Please select which funds source you wish to withdraw from:</p>';
        balanceBox+='<input type="radio" id="source1" name="sourceBalance" value="old" style="float: left; margin-right: 10px;"> <label for="source1"><b>Pre-Profit Shift Funds</b>: You have $' + old_balance + ', max you can withdraw is $' + old_limit + '</label><br/>';
        balanceBox+='<input type="radio" id="source2" name="sourceBalance" value="new" style="float: left; margin-right: 10px;" checked> <label for="source2"><b>Post-Profit Shift Funds</b>: You have $' + new_balance + ', max you can withdraw is $' + new_limit + '</label><br/>';
      } else if ( old_limit >= 20 ) {
//        balanceBox='<input type="hidden" name="sourceBalance" value="old"> You have $' + old_balance + ' before Profit Shift, max you can withdraw is $' + old_limit + '<br/>';
        balanceBox='<p>Please select which funds source you wish to withdraw from:</p>';
        balanceBox+='<input type="radio" id="source1" name="sourceBalance" value="old" style="float: left; margin-right: 10px;" checked> <label for="source1"><b>Pre-Profit Shift Funds</b>: You have $' + old_balance + ', max you can withdraw is $' + old_limit + '</label><br/>';
        balanceBox+='<input type="radio" id="source2" name="unselectable" value="" style="float: left; margin-right: 10px;" disabled> <label for="source2"><b>Post-Profit Shift Funds</b>: You have $' + new_balance + ', max you can withdraw is $' + new_limit + '</label><br/>';
      } else if ( new_limit >= 20 ) {
//        balanceBox='<input type="hidden" name="sourceBalance" value="new"> You have $' + new_balance + ' after Profit Shift, max you can withdraw is $' + new_limit + '<br/>';
        balanceBox='<p>Please select which funds source you wish to withdraw from:</p>';
        balanceBox+='<input type="radio" id="source1" name="unselectable" value="" style="float: left; margin-right: 10px;" disabled> <label for="source1"><b>Pre-Profit Shift Funds</b>: You have $' + old_balance + ', max you can withdraw is $' + old_limit + '</label><br/>';
        balanceBox+='<input type="radio" id="source2" name="sourceBalance" value="new" style="float: left; margin-right: 10px;" checked> <label for="source2"><b>Post-Profit Shift Funds</b>: You have $' + new_balance + ', max you can withdraw is $' + new_limit + '</label><br/>';
      } else {
        balanceBox='You do not have enough funds to withdraw anything!';
      }
      jQuery("div.balanceSelect").html(balanceBox);

      jQuery(".fee").html(fee);
      jQuery(".account").html(account);
      jQuery(".processorName").html(processor);

      jQuery("form#withdrawForm").show();
      jQuery("div.withdrawbox img.loading").hide();
    }
    else jQuery("div.withdrawbox").html(data.error + "<br><p><a href=\"" + base_href+data.redirect + "\">Back</a></p>").show();
  }
  });
});

</script>
        <div class="footertopshadow"></div>
<div class="footer">
    <div class="container_12">
        <div class="container_footer">
            <div class="footing">
                <div class="footerline">
				<a target="_blank" href="http://solidtrustpay.com/?r=28815"><img class="solid" src="http://static.profitclicking.com/images/logos/1.png"/></a>
				<a target="_blank" href="https://www.egopay.com/?18437"><img class="solid" src="http://static.profitclicking.com/images/logos/2.png"/></a>
				<a target="_blank" href="https://secure.payza.com/?WkLYZ1kYUPjyg1jXMaxbKw%3d%3d"><img class="solid" src="http://static.profitclicking.com/images/logos/3.png"/></a>
				<a target="_blank" href="https://perfectmoney.com/signup.html?ref=782988"><img class="solid" src="http://static.profitclicking.com/images/logos/4.png"/></a>
				<a target="_blank" href="http://www.libertyreserve.com/?ref=U0107957"><img class="solid" src="http://static.profitclicking.com/images/logos/5.png"/></a>
				<a target="_blank" href="http://www.acunetix.com"><img class="solid" src="http://static.profitclicking.com/images/logos/6.png"/></a>
				<a target="_blank" href="http://www.blockdos.net"><img class="solid" src="http://static.profitclicking.com/images/logos/8.png"/></a></div>

<!-- sharaholic stuff
                    <div class="shr_class shareaholic-show-on-load" style="height: 52px;float: right;margin-top: -130px;"></div>
                    <script type="text/javascript">
                        var SHRSB_Settings = {"shr_class":{"src":"http://static.profitclicking.com/css/pc", "link":"", "service":"5,7,88,304,313", "apikey":"0747414f47c2b684cf5480c36b2478689", "localize":true, "shortener":"bitly", "shortener_key":"", "designer_toolTips":true, "tip_bg_color":"black", "tip_text_color":"white", "twitter_template":"${title} - ${short_link} via @Shareaholic"}};
                        var SHRSB_Globals = {"perfoption":"1"};
                    </script>
                    <script type="text/javascript">
                        (function () {
                            var sb = document.createElement("script");
                            sb.type = "text/javascript";
                            sb.async = true;
                            sb.src = ("https:" == document.location.protocol ? "https://dtym7iokkjlif.cloudfront.net" : "http://cdn.shareaholic.com") + "/media/js/jquery.shareaholic-publishers-sb.min.js";
                            var s = document.getElementsByTagName("script")[0];
                            s.parentNode.insertBefore(sb, s);
                        })();
                    </script>
-->

                    <div class="grid_3f">
                        <div class="footertitle">Sitemap</div>
                        <br/>
                        <div class="footerunderline"></div>
                        <ul class="footer-list">
                            <li class="current first">
                                <a href="http://www.profitclicking.com/">Home</a>
                            </li>
                            <li>
                                <a href="http://www.profitclicking.com/about-us">About Us</a>
                            </li>
                            <li>
                                <a href="http://www.profitclicking.com/how-it-works">How it Works</a>
                            </li>
                            <li>
                                <a href="http://www.profitclicking.com/faqs">FAQ</a>
                            </li>
                            <li class="last">
                                <a href="http://www.profitclicking.com/media">Media</a>
                            </li>
                            
                        </ul>
                    </div>
                    <div class="grid_3f">
                        <div class="footertitle">Support</div>
                        <br/>
                        <div class="footerunderline"></div>
                        <ul class="footer-list">
                            <li class="first">
                                <a href="http://www.profitclicking.com/conference">Live Video Conference 24/7</a>
                            </li>
                            <li>
                                <a href="http://www.profitclicking.com/faqs">FAQ</a>
                            </li>
                                                        <li>
                                <a href="http://www.profitclicking.com/training-schedule">Training Center</a>
                            </li>

                                                        <li>
                                <a href="http://www.profitclicking.com/dashboard/build-my-business/approved-advertising/banners">Marketing Area</a>
                            </li>
                            
                            <li >


    <!-- <a href="http://www.profitclicking.com/career-with-us">Careers with Us</a> -->
                        <a href="http://www.profitclicking.com/coming_soon.php?title=Career+With+Us">Careers with Us</a>
                            </li>

                            <li class="last">
                                <a href="http://www.profitclicking.com/make-a-suggestion">Make A Suggestion</a>
                            </li>

                        </ul>
                    </div>
                    <div class="grid_3f">
                        <div class="footertitle">Legal</div>
                        <br/>
                        <div class="footerunderline"></div>
                        <ul class="footer-list">
                            <li class="first">
                                <a href="http://www.profitclicking.com/help">Corporate Law Firm</a>
                            </li>
                            <li>
                                <a href="http://www.profitclicking.com/terms-of-service">Terms of Service</a>
                            </li>
                            <li>
                                <a href="http://www.profitclicking.com/terms-of-service">Disclosures</a>
                            </li>
                            <li>
                                <a href="http://www.profitclicking.com/privacy-policies">Privacy Policies</a>
                            </li>
                            <li>
                                <a href="http://www.profitclicking.com/spam-policy">Spam Policy</a>
                            </li>
                            <li>
                                <a href="http://www.profitclicking.com/member-agreement">Member Agreement</a>
                            </li>
                        </ul>
                    </div>
                    <div class="grid_3f">
                        <div class="footertitle">Important Links</div>
                        <br/>
                        <div class="footerunderline"></div>
                        <ul class="footer-list">
                            <li class="first">
                                <a href="http://www.profitclicking.com/testimonials">Testimonials</a>
                            </li>
                            <li>
                                <a href="http://www.profitclicking.com/million-dollar-challenge">Million Dollar Challenge</a>
                            </li>
                            <li>
                                <a href="http://www.profitclicking.com/report-spam">Report Suspicious E-Mail</a>
                            </li>
                            <li class="last">
                                <a href="http://www.profitclicking.com/report-negative-comments">Report Negative Comments</a>
                            </li>
                        </ul>
                    </div>

                    <div class="grid_3lf blackbox " style="margin-top:0px;">
                        <div class="footertitle">LIVE MEDIA FEED</div>
                        <div style=" width:280px; height:335px; overflow-x:hidden;overflow-y:auto;background-color:#0e1c42;margin-top:15px;">
                            <div class="tweet">
                            </div>
                        </div>
                    </div>
                    <br/><br/><br/><br/>
                    <div class="pccopy">
                        
						Use of this Site is subject to express Terms of Use. By using this Site, you signify that you agree to be bound by these Terms of Use, 
						which were last revised on September 2012. ProfitClicking.com is an internationally based organization committed to operating by legal compliance,<br /> 
						with the aid of our in-house globally renowned  law firm.
                        <br/>Copyright © 2004 - 2012 ProfitClicking.com. All Rights Reserved.
                    </div>
                </div>
                <script type="text/javascript">

                    $(".tweet").tweet({
                        username:"ProfitClicking",
                        join_text:"auto",
                        avatar_size:40,
                        count:20,
                        auto_join_text_default:"we said,",
                        auto_join_text_ed:"we",
                        auto_join_text_ing:"we were",
                        auto_join_text_reply:"we replied to",
                        auto_join_text_url:"we were checking out",
                        loading_text:"loading tweets..."
                    }).ajaxStop(function () {
                                $('.tweet').vTicker({
                                    speed:500,
                                    pause:10000,
                                    showItems:20,
                                    animation:'fade',
                                    mousePause:true,
                                    height:0,
                                    direction:'up'
                                });
                            });
var _SKYAUTH = {
  loginUrl:'http://www.profitclicking.com/dashboard',
};
                </script>
                <script type="text/javascript" src="//static2.skysa.com?i=F3D86A2A-ACA0-4EA9-B706-51D5D5522726" async="true"></script>
            </div>
        </div>
    </div>
</div>
		
    </body>
</html>

Za każdą podpowiedź dziękuje.