function addToCard()
{
	var description = addToCard.arguments[0];
	var price = addToCard.arguments[1];
	var netPrice = price;
	var tax = price-netPrice;
	var shippingFR = addToCard.arguments[2];
	var shippingEU = addToCard.arguments[3];
	var shippingWorld = addToCard.arguments[4];
	
	text = '<form action="https://www.e-junkie.com/ecom/fgb.php?c=cart&cl=1&ejc=2" target="ej_ejc" method="POST">';
	text = text+'<input type="hidden" name="business" value="frederique@daubal.com"/>';
	text = text+'<input type="hidden" name="site_url" value="http://www.daubal.com"/>';
	text = text+'<input type="hidden" name="contact_email" value="frederique@daubal.comd"/>';
	text = text+'<input type="hidden" name="item_name" value="'+description+'"/>';
	text = text+'<input type="hidden" name="item_number" value="1"/>';
	text = text+'<input type="hidden" name="amount" value="'+netPrice+'"/>';
	text = text+'<input type="hidden" name="quantity" value="1"/>';
	
	if (addToCard.arguments.length>5)
	{
		for (argNb = 5; argNb < addToCard.arguments.length; argNb++)
		{
			argCnt = argNb-5;
			
		
			text = text+'<input type="hidden" name="on'+argCnt+'" value="'+addToCard.arguments[argNb][0]+'"/>';
			text = text+'<select name="os'+argCnt+'" >';
			
				for (i=1;i<addToCard.arguments[argNb].length; i++) { text = text+'<option value="'+addToCard.arguments[argNb][i]+'">'+addToCard.arguments[argNb][i]+'</option>'; }
			text = text+'</select>';
		}
	}
	

	
	text = text+'<input type="hidden" name="shipping" value="'+shippingFR+'">';
	text = text+'<input type="hidden" name="shipping2" value="'+shippingEU+'">';
	text = text+'<input type="hidden" name="handling" value="0">';
	text = text+'<input type="hidden" name="tax" value="'+tax+'"/>';
	text = text+'<select name="shipping" >';
	text = text+'<option value="'+shippingFR+'">France (+'+shippingFR+' &#8364;)</option>';
	text = text+'<option value="'+shippingEU+'">Europe (+'+shippingEU+' &#8364;)</option>';
	text = text+'<option value="'+shippingWorld+'">Worldwide (+'+shippingWorld+' &#8364;)</option>';
	text = text+'</select>';
	text = text+'<input type="hidden" name="return_url" value="http://www.daubal.com"/>';

	text = text+'<input type="hidden" name="currency_code" value="EUR"/>';
	text = text+'<img id="panier" src="/themes/site_red/images/iconPanier.png" alt="order" /> <a href="#" onfocus="blur()" onClick="javascript:return EJEJC_lc(this.parentNode);">order / commander</a>'
	text = text+'</form>'; 

	document.write(text);
}
