function _1euro_demarche(_page) {
		var son=window.open(_page, 'demarche', 'width=400,height=400,toolbar=false,scrollbars=false');
		son.focus();
}

function _1euro_calculette(_page) {
		var son=window.open(_page,'calculette','width=600,height=495,toolbar=false,scrollbars=false');	
		son.focus();
}


function _1euro_calculette_product_info(_page, _this_form) {
	var res=0;
	var p_ref = _this_form.p_ref.value;	
	var pi_ref_itemObj = _this_form.pi_ref_item;	
	if (pi_ref_itemObj.length>1) {
		for (i=0;i<pi_ref_itemObj.length;i++) {
			var aRadio= pi_ref_itemObj[i];
			if (aRadio.checked==1) {
				res=1;
				_montant=eval('_this_form.montant['+i+'].value');
				_page = _page+'%26montant='+ _montant;
			}
		}
	}
	else {
		res=1;
		_montant=eval('_this_form.montant.value');
		_page = _page+'%26montant='+ _montant;
	}
	if (res==0) {
		alert('Merci de sélectionner une taille avant de cliquer sur le bouton CALCULER avec 1EURO.com.');
	}
	else {
		var son=window.open(_page,'calculette','width=600,height=495,toolbar=false,scrollbars=false');	
		son.focus();					
	}
}
