function sw(dt, param, id, token)
{				var str;
				str='accessLogin2.cfm?dt=' + dt + '&aCKS=' + param + '&CFID=' + id + '&CFTOKEN=' + token;
					if (navigator.appName=="Microsoft Internet Explorer")
					{
						
						window.location.replace(str ) ;
						//FUNZIONANTE CON IE 5, 6
					}
					else
					{						
						window.location = str;
						//FUNZIONANTE CON IE 5, 6 E NS
						//sembra avere qualche problema con IE5
					}
};

function swSU(dt, param, id, token)
{				var str;
				str='accessLogin2SU.cfm?dt=' + dt + '&aCKS=' + param + '&CFID=' + id + '&CFTOKEN=' + token;
					if (navigator.appName=="Microsoft Internet Explorer")
					{
						
						window.location.replace(str ) ;
						//FUNZIONANTE CON IE 5, 6
					}
					else
					{						
						window.location = str;
						//FUNZIONANTE CON IE 5, 6 E NS
						//sembra avere qualche problema con IE5
					}
};
