function flashSite(id,adres)
{
 var popup_width = 700;
 var popup_height = 800;
 var flashFile = 'http://www.victory.com.pl/sklep/shared/default/swf/popup.swf';

 var margin_left=((screen.width)/2)-(popup_width/2);
 var margin_top=((screen.height)/2)-(popup_height/2);

 var oNewWin = window.open("about:blank","Victory","width="+popup_width+",height="+popup_height+",top="+margin_top+",left="+margin_left+",resizable=0,scrollbars=no,menubar=no,status=no,toolbar=no,location=no,directories=no");
 oNewWin.document.open();
 oNewWin.document.write('<html>');
 oNewWin.document.write('<head>');
 oNewWin.document.write('<title>Victory - corporate design</title>');
 oNewWin.document.write('<meta name="title" content="Victory" />');
 oNewWin.document.write('<style type="text/css">html,body{background:#2A2A2A url("http://www.victory.com.pl/sklep/shared/default/img/body-bg.gif"); margin:0; padding:0;} img,object{border:none;} .main {height:800px; width:700px; position:absolute; top:50%; left:50%; margin-top:-400px; margin-left:-350px;}</style>');
 oNewWin.document.write('</head>');
 oNewWin.document.write('<body>');
 oNewWin.document.write('<div class="main">');
 oNewWin.document.write('<object width="'+popup_width+'" height="'+popup_height+'" type="application/x-shockwave-flash" data="'+flashFile+'">');
 oNewWin.document.write('<param name="movie" value="'+flashFile+'" />');
 oNewWin.document.write('<param name="FlashVars" value="id='+id+'&adres='+adres+'"/>');
 oNewWin.document.write('<param name="bgcolor" value="#000000" /></object>');
 oNewWin.document.write('</div>');
 oNewWin.document.write('</body>');
 oNewWin.document.write('</html>');
 oNewWin.document.close();
} 
