function apri_w_scr(filename, x, y, target)
{
windowops = eval("'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=" + x + ",height=" + y + "'");
newwindow=window.open(filename, target, windowops);
newwindow.focus();
return;
}

function apri_wo_scr(filename, x, y, target)
{
windowops = eval("'toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no,titlebar=0,alwaysraised=no,scrollbars=no,resizable=no,width=" + x + ",height=" + y + "'");
newwindow=window.open(filename, target, windowops);
newwindow.focus();
return;
}


function apri_w_scr_login(filename, x, y, target)
{
windowops = eval("'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=" + x + ",height=" + y + "'");
newwindow=window.open(filename, target, windowops);
newwindow.moveTo(150,90);
newwindow.resizeTo(250,200);
newwindow.focus();
return;
}

function apri_w_scr_reg(filename, x, y, target)
{
windowops = eval("'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=" + x + ",height=" + y + "'");
newwindow=window.open(filename, target, windowops);
newwindow.moveTo(150,90);
newwindow.resizeTo(500,550);
newwindow.focus();
return;
}

function iscriviti()
	{
	prv = "mailing/add.asp";
	w=window.open(prv,"carrello","width=600,height=300,top=20,left=150,menubar=no,scrollbars=no,resizable=no");
	w.moveTo(150,20)
	w.resizeTo(650,300)
	w.focus();
	}
	
function cancellati()
	{
	prv = "mailing/delete.asp";
	w=window.open(prv,"carrello","width=500,height=400,top=20,left=150,menubar=no,scrollbars=no,resizable=no");
	w.moveTo(150,20)
	w.resizeTo(650,300)
	w.focus();
	}

