// JavaScript Document

function fl(flasz, wars, xx , yy) {
document.write( '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="' + xx + '" height="' + yy + '" hspace="0" vspace="0"/>');
        document.write( '\t<param name="movie" value="' + flasz + '.swf">');
        document.write( '\t<param name="quality" value="high">');
        document.write( '\t<param name="menu" value="false">');
        document.write( '\t<param name="FlashVars" value="' + wars + '">');
        document.write( '\t<embed src="' + flasz + '.swf" FlashVars="' + wars + '" width="' + xx + '" height="' + yy + '" hspace="0" vspace="0" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>');
document.write( '</object>');

}

var picwindow;
function new_window(adres)
{
        newwindow=window.open(adres,'NewTrade','height=400,width=330,menubar=no,resizable=no,scrollbars=yes,status=no,top=150,left=200');
        if (window.focus) {newwindow.focus()}
}

function new_size_window(adres, nazwa, x, y, scrl) {
    var xMax = screen.width, yMax = screen.height;
    var xOffset = (xMax - y)/2, yOffset = (yMax - x)/2;
    newwindow=window.open(adres, nazwa, 'height='+x+', width='+y+', menubar=no, resizable=no, scrollbars='+ scrl +', status=no, screenX='+xOffset+',screenY='+yOffset+', top='+yOffset+',left='+xOffset+'');
        if (window.focus) {newwindow.focus()}
}


