Array.prototype.inArray = function (value)
 // Returns true if the passed value is found in the
 // array.  Returns false if it is not.
{
     var i;
     for (i=0; i < this.length; i++) {
         // Matches identical (===), not just similar (==).
         if (this[i] === value) {
             return true;
         }
     }
     return false;
};

function getcookie(cookiename) {
 var cookiestring=""+document.cookie;
 var index1=cookiestring.indexOf(cookiename);
 if (index1==-1 || cookiename=="") return "";
 var index2=cookiestring.indexOf(';',index1);
 if (index2==-1) index2=cookiestring.length;
 return unescape(cookiestring.substring(index1+cookiename.length+1,index2));
}

function openSaleChannel(idSaleChannel,mode) {
	if (idDistributor==1) {
		pageTracker._trackPageview('/banki/otwarty');
	}
	reffid=getcookie('reff_id');
    reff='';
    if(reffid!='')
    {
        reff="&reffid="+reffid;
    }
    if ((rt=getcookie('mny_rt'))) rt="&mny_rt="+rt;
    else rt='';

    if (mode) mode="&"+mode;
    else mode="";
    if (idSaleChannel==304) {size=' width=880,height=1160 ';}
    else {size = ' width=920,height=770 ';}

    /*
    if (idSaleChannel==10) window.open('https://direct.money.pl/o/salechannel.php?idSaleChannel=' + idSaleChannel + '&idDistributor=' + idDistributor + reff + rt, 'formularz');
    else window.open('https://direct.money.pl/o/salechannel.php?idSaleChannel=' + idSaleChannel + '&idDistributor=' + idDistributor + mode + reff + rt, 'formularz', 'width=800,height=550,status=yes,scrollbars=yes');
    */
    window.open('https://direct.money.pl/o/salechannel.php?idSaleChannel=' + idSaleChannel + '&idDistributor=' + idDistributor + mode + reff + rt, 'formularz', size +',status=yes,scrollbars=yes');
    /*
    var nofrm = new Array(1,2,3,4,5,6,54,55,56,71,75,76,85,51,13,14,27,34,40,43,48,81,39,74,78,86,87,88,83,38,138,82,84,128,127,126,125,115,116,117,118,119,120,121,122,123,124,129,130,131,132,133,139,140,102,148,151,152,153,154);
    if (nofrm.inArray(idSaleChannel)) {
        window.open('https://direct.money.pl/o/salechannel.php?idSaleChannel=' + idSaleChannel + '&idDistributor=' + idDistributor, '', 'width=800,height=550,status=yes,scrollbars=yes');
    } else {
        window.open('https://direct.money.pl/o/form.php?idSaleChannel=' + idSaleChannel + '&idDistributor=' + idDistributor, mode, 'width=800,height=550,status=yes');
    }
    */
}

function XopenSaleChannel(idSaleChannel) {
    //src.href='https://direct.money.pl/o/salechannel.php?idSaleChannel=' + idSaleChannel + '&idDistributor=' + idDistributor;
    //src.target="_blank";
    window.open('https://direct.money.pl/o/salechannel.php?idSaleChannel=' + idSaleChannel + '&idDistributor=' + idDistributor, 'formularz');
}

