<!--
// *****************************************************************************************
// JS Loader - Carica i javascript esterni in base alla pagina che lo richiede - By Gianluca
// *****************************************************************************************

jsfile = "";
jsdir = "/js_addon/";
str = parent.location.search;

// userPayment
if (str.indexOf("FId=3") > -1)
{
	jsfile = 'userPayment.js';
}
// regPayment
if (str.indexOf("FId=4") > -1)
{
	jsfile = 'regPayment.js';
}
// blockUserEdit
if ((str.indexOf("FId=4") > -1) && (document.getElementById('ctl02_ac_lblGreetings') != null))
{
	jsfile = 'blockUserEdit.js';
}

if (jsfile != "")
{
	document.write('<script LANGUAGE="javascript" type="text/javascript" src="' + jsdir + jsfile + '"></script>');
}

-->