// Aprire una nuova finestra del carrello/email
function aTc(idP) {
	
	var finestra;
	var arrPar, strStrPara;
	// alt,lar,scroll,resiz,status,menu,toolb,locat
	var pth_pathfile

  if(idP!=0) {
		pth_pathfile = "http://www.vieetaction.org/p_cart.asp?prdct_id="+idP;
	}
	else {
		pth_pathfile = "http://www.vieetaction.org/p_cart.asp?act=view";
	}
	var str_parametri = "600,850,yes,yes,no,no,no,no";
	
	arrPar = str_parametri.split(",");

	strStrPara = "height="+arrPar[0]+",width="+arrPar[1]+",scrollbars="+arrPar[2]+",resizable="+arrPar[3]+",status="+arrPar[4]+",menubar="+arrPar[5]+",toolbar="+arrPar[6]+",location="+arrPar[7];
	
	finestra=window.open(pth_pathfile,"add_to_email",strStrPara);
		
	if(finestra != null){
		finestra.focus();
		return false;
	}
	else {
		alert("The page is displayed in a new popup window.\nPlease allow your browser to open it.\n");
		return false;
	}

}

function refresh_page() {
	document.frm_refresh.submit();
}