function Popup(apri, nome, x, y, x1, y1) {
	
	var env = document.location.host;
	
	if (env == 'sys.chebanca.it')
	{
		var link = 'http://sys.chebanca.it/CheBancaWeb/Active'+apri.substring(1);
		
	}
	if (env == 'uat.chebanca.it')
	{
		var link = 'http://uat.chebanca.it/CheBancaWeb/Staging'+apri.substring(1);

	}

	if (env == 'www.chebanca.it')
	{
		var link = 'http://www.chebanca.it/CheBancaWeb/Active'+apri.substring(1);

	}

	var larg = "";
	var lung = "";
	var larg = x;
	var lung = y;
	var top1 = x1;
	var left1 = y1;

	var stile = "";
	
	if (larg != "" && lung != "") {

	stile = 'top='+top1+', left='+left1+', width='+larg+', height='+lung+', status=no, menubar=no, toolbar=no, scrollbars=no';
	}
	else
	{

	stile = 'top=30, left=400, width=400, height=400, status=no, menubar=no, toolbar=no, scrollbars=no';
	}


	//alert(nome);

	var mywindow = window.open("_blank", "", stile);

	mywindow.document.write("<script id='myscript' language='JavaScript' type='text/javascript' src='/wps/themes/html/MicosPublic/js/s_code.js'></script><script language='JavaScript' type='text/javascript'><!--"+
		"\n/* You may give each page an identifying name, server, and channel on"+
		"\nthe next lines. */"+
		"\npageName='"+nome+"';window.onload = function(){s.pageName=pageName"+
		"\ns.server=''"+
		"\ns.channel='iST'"+
		"\ns.pageType=''"+
		"\ns.prop1=''"+
		"\ns.prop2=''"+
		"\ns.prop3=''"+
		"\ns.prop4=''"+
		"\ns.prop5=''"+
		"\n/* Conversion Variables */"+
		"\ns.campaign=''"+
		"\ns.state=''"+
		"\ns.zip=''"+
		"\ns.events=''"+
		"\ns.products=''"+
		"\ns.purchaseID=''"+
		"\ns.eVar1=''"+
		"\ns.eVar2=''"+
		"\ns.eVar3=''"+
		"\ns.eVar4=''"+
		"\ns.eVar5=''"+
		"\ns.t()}"+
		"\n//--></script><!--/DO NOT REMOVE/-->"+
		"\n<!-- End SiteCatalyst code version: H.15.1. --><frameset><frame src='"+link+"'/></frameset>");

	mywindow.document.close();

}