<!--
//funzione per l'apertura della finestra di log

function loggarsi(dir)
{
if (dir == 'inizio')
	open("interna/index.cfm","newwindow","height=250,width=350,alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,resizable=0,scrollbars=0,status=0,titlebar=0,toolbar=0,z-lock=0,screenX=0,screeny=0,left=0,top=0")
else
	open("index.cfm","newwindow","height=250,width=350,alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,resizable=0,scrollbars=0,status=0,titlebar=0,toolbar=0,z-lock=0,screenX=0,screeny=0,left=0,top=0");
}
function WOpen(url,name,params_str,width,height,scrollbars,status,resize) {
if (!params_str) {
params_str='';
}
params_str+=width?(params_str?',':'')+'width='+width:'';
params_str+=height?(params_str?',':'')+'height='+height:'';
params_str+=scrollbars!==(void 0)?(params_str?',':'')+'scrollbars='+scrollbars:'';
params_str+=status!==(void 0)?(params_str?',':'')+'status='+status:'';
params_str+=resize!==(void 0)?(params_str?',':'')+'resizable='+resize:'';
new_w=window.open(url,name,params_str);
new_w.focus();
}
//-->
