﻿var currentId=0;

function loadInstruction(code)
{   
    document.getElementById("partnerId").value = '1';   
    document.getElementById("startPage").value = window.location.protocol + '//' + window.location.hostname + window.location.pathname;
    document.getElementById("endPage").value = 'http://www.fxuniversal.com' 
    document.getElementById("timeStamp").value = Date();
    switch(code)
    {
        case "1":
        { 
           document.getElementById("applicationUse").value = 'demonstration'
            window.document.getElementById("frmSelection").submit();
            break;
        }
        case "2": 
        {
            url = 'http://www.fxuniversal.com/learn/free_practice_account.html';
            break;
        }
        case "3":
        {

            document.getElementById("frmSelection").action = "https://demo.webtradingonline.com/web/webtrading.aspx";

            document.getElementById("platform").value = "3";
            document.getElementById("applicationUse").value = 'logon'
            document.getElementById("frmSelection").target = 'main' + currentId++;
            window.open( '', document.getElementById("frmSelection").target, 'width=900, height=700, resizable=yes, scrollbars=no, toolbar=no, location=no, directories=no, status=no, menubar=no');
            window.document.getElementById("frmSelection").submit();
            break;
        }
        case "4": 
        {

            document.getElementById("frmSelection").action = "https://live.webtradingonline.com/web/webtrading.aspx";
            document.getElementById("platform").value = "4";
            document.getElementById("applicationUse").value = 'logon'
            document.getElementById("frmSelection").target = 'main' + currentId++;
            window.open( '', document.getElementById("frmSelection").target, 'width=900, height=700, resizable=yes, scrollbars=no, toolbar=no, location=no, directories=no, status=no, menubar=no');
            window.document.getElementById("frmSelection").submit();
            break;
        }
 default:
        {    
            document.getElementById("applicationUse").value = 'logon'
            document.getElementById("frmSelection").target = 'main' + currentId++;
            window.open( '', document.getElementById("frmSelection").target, 'width=900, height=700, resizable=yes, scrollbars=no, toolbar=no, location=no, directories=no, status=no, menubar=no');
            window.document.getElementById("frmSelection").submit();
            break;
        }
    }
}
