var PatriaDirectExternalOrderAvailable = true;
var PatriaDirectExternalOrderUrl = "https://www.patria-direct.cz/TradeOrder.aspx";
var PatriaDirectPortalUrl = "https://www.patria-direct.cz";
var PatriaDirectExternalOrderWelcomeCode="POL";

function PatriaDirectCallTradeOrder( action, ric, isin, currency, exchange )
{
  if( !PatriaDirectExternalOrderAvailable ){
    window.open( PatriaDirectPortalUrl, 'PatriaDirectWindow' );   
  } else {
    var width=640;
    var height=480;
    var top = Math.floor((screen.height-height)/2);
    var left = Math.floor((screen.width-width)/2);
    var url = PatriaDirectExternalOrderUrl + "?heading=" + action + "&ric=" + ric + "&isin=" + isin + "&currency=" + currency + "&exchange=" + exchange + "&LeadingPage=" + PatriaDirectExternalOrderWelcomeCode;
    var wnd = window.open( url, 'BusinessOrder', 'status=yes,toolbar=no,menubar=no,location=no,status=no,titlebar=no,resizable=no' + ',width=' + width + ',height=' + height + ',top=' + top + ',left=' + left );
    try{  wnd.moveTo( (screen.width-width )/2, (screen.height-height)/2 );} catch(ex){;}
  }
}
