
var ica_height = 430;
var ica_width  = 300;
var ica_url    = "/p/en_US/embedded";


function ICA_Icon()
{
	y = (screen.availHeight - ica_height)/2;
	x = (screen.availWidth - ica_width)/2;

	// for big resolutions cut width in half
	if (screen.availWidth > 1800){ x = ((screen.availWidth/2) - ica_width)/2; };

	var winProperties = "scrollBars=no,toolbar=no,resizeable=yes,width=" + ica_width + ",height=" + ica_height + ",screenX=" + x + ",screenY=" + y + ",top=" + y + ",left=" + x;

	var ica_window = window.open(ica_url, "icaWin", winProperties);
};	


	
	
	
