var currentId=0;

function launchTradingPlatformFXLive(live_url)
{
    // REQUIRED, DON'T TOUCH PLEASE
    document.getElementById("timeStamp").value = Date();
	
	// SET THE TARGET PATH TO THE LIVE WEB TRADER SOURCE
	document.getElementById("frmSelection").action = live_url;
	
	// SET THE INTERNAL PLATFORM
	document.getElementById("platform").value = "4";
	
	// SET THE TARGET NAME FOR WINDOW OPENER
	document.getElementById("frmSelection").target = 'main' + currentId++;
	
	// REQUIRED POPUP THE WINDOW (SECURITY REQUIREMENT)
	window.open( '', document.getElementById("frmSelection").target, 'width=900, height=700, resizable=yes, scrollbars=no, toolbar=no, location=no, directories=no, status=no, menubar=no');
	
	// POST THE LOGIN DATA
	window.document.getElementById("frmSelection").submit();
}

function launchTradingPlatformFXDemo(demo_url)
{   
    // REQUIRED, DON'T TOUCH PLEASE
    document.getElementById("timeStamp").value = Date();
    
	// SET THE TARGET PATH TO THE DEMO WEB TRADER SOURCE
	document.getElementById("frmSelection").action = demo_url;
	
	// SET THE INTERNAL PLATFORM
	document.getElementById("platform").value = "3";
	
	// SET THE TARGET NAME FOR WINDOW OPENER
	document.getElementById("frmSelection").target = 'main' + currentId++;
	
	// REQUIRED POPUP THE WINDOW (SECURITY REQUIREMENT)
	window.open( '', document.getElementById("frmSelection").target, 'width=900, height=700, resizable=yes, scrollbars=no, toolbar=no, location=no, directories=no, status=no, menubar=no');

	// POST THE LOGIN DATA
	window.document.getElementById("frmSelection").submit();
}

function launchTradingPlatformG2(url) {
	window.open(url,'IRMASTERgc','scrollbars=0,resizable=yes,location=no,directories=no,menubar=no,toolsbar=no,status=no,top=0,left=0,height=690,width=1019');
}