﻿// POPUP

function wopen(url, name, w, h)
{
// Fudge factors for window decoration space.
 // In my tests these work well on all platforms & browsers.
w += 32;
h += 96;
 var win = window.open(url,
  name,
  'width=' + w + ', height=' + h + ', ' +
  'location=no, menubar=no, ' +
  'status=no, toolbar=no, scrollbars=yes, resizable=yes');
 win.resizeTo(w, h);
 win.focus();
}

function OtworzKonto(numer)
{

switch (numer)
{

//DBNET
case 1:  //dbnet                             
var adres = 'http://clk.tradedoubler.com/click?p=173603&a=1898981&g=18467608';
break;

}


formularz = window.open(adres, '', 'width=1024,height=768,status=no,scrollbars=yes');
formularz.focus();
}



