   function FormatNumber(num)
   {
     if(isNaN(num)) { num = "0"; }
     sign = (num == (num = Math.abs(num)));
     num = Math.floor(num*100+0.50000000001);
     cents = num%100;
     num = Math.floor(num/100).toString();
     if(cents<10) { cents = "0" + cents; }
     for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++)
     {
       num = num.substring(0,num.length-(4*i+3))+','+ num.substring(num.length-(4*i+3));
     }
     return (((sign)?'':'-') + num + '.' + cents);
   }

     function FormatNumber1(num)
  {
    if(isNaN(num)) { num = "0"; }
    sign = (num == (num = Math.abs(num)));
    num = Math.floor(num*1+0.50000000001);
    cents = num%100;
    num = Math.floor(num/100).toString();
    if(cents<10) { cents = "0" + cents; }
    for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++)
    {
      num = num.substring(0,num.length-(4*i+3))+','+ num.substring(num.length-(4*i+3));
    }
    return (((sign)?'':'-') + num + ',' + cents);
  }

  function showPrice(form)
  {
   var currencysymbol1 = "";
    var currencysymbol2 = "";
    var myTotalPrice = 0;
    var showUP = 0;
    var myMathProblem = "";
    myItemPrice = parseFloat(form.nuPrice.value);

   myDollarSign2 = form.nuPrice.value.indexOf("EUR",0)
   if ( myDollarSign2 != "-1" )
   {
      currencysymbol1 = "";
     currencysymbol2 = " EUR";
   } else {
     currencysymbol1 = "$";
     currencysymbol2 = "";
   }

   for (var i = 0; i < form.elements.length; i++)
    {
      var e = form.elements[i];
      if ( e.type == 'select-one' )
      {
        showUP = 1;
        Item = e.selectedIndex;
        myPrice = e.options[Item].text;
        myDollarSign = myPrice.indexOf("$",0)
        if ( myDollarSign != "-1" )
        {
        currencysymbol1 = "$";
        currencysymbol2 = "";
          myParSign = myPrice.indexOf(")", myDollarSign);
          myAttributeString = myPrice.substring(myDollarSign+1, myParSign);
          myAttributeString = myAttributeString.replace(/,/,"");
          myAttributePrice = parseFloat(myAttributeString);
          myMathProblem = myPrice.charAt(myDollarSign - 1);
        } else {
         /*myDollarSign1 = myPrice.indexOf("(",0)
         if ( myDollarSign1 != "-1" )
         {
         currencysymbol1 = "";
          currencysymbol2 = " EUR";
         myParSign = myPrice.indexOf(")", myDollarSign1);
         myAttributeString = myPrice.substring(myDollarSign1+1, myParSign);
         myAttributeString = myAttributeString.replace(/,/,"");
         myAttributePrice = parseFloat(myAttributeString);
         myMathProblem = myPrice.charAt(myDollarSign1 - 1);
         } else {
         myAttributePrice = 0;
         }
     	*/
		myAttributePrice = 0;
      }
          if (myMathProblem == "-")
          {
            myTotalPrice = myTotalPrice - myAttributePrice;
          } else {
            myTotalPrice = myTotalPrice + myAttributePrice;
          }
      }
    }
    if ( showUP )
    {
      myDollarSign3 = form.nuPrice.value.indexOf(".",0)
      if ( myDollarSign3 != "-1" )
      {
        myTotalPrice = FormatNumber(myTotalPrice + myItemPrice);
      } else {
        myTotalPrice = FormatNumber1(myTotalPrice + myItemPrice);
      }
        document.getElementById("productNEWprice").innerHTML = currencysymbol1 + myTotalPrice + currencysymbol2 + " CAD";
		if (document.forms["cart_quantity"].elements["currency_value"].value > 0){
			Value = document.forms["cart_quantity"].elements["currency_value"].value;
			Code = document.forms["cart_quantity"].elements["currency_code"].value;
			PriceWithoutComma = myTotalPrice.replace(/,/,'');
			PriceEstimation = FormatNumber(PriceWithoutComma/Value*1.02);
			if(Code == 'USD'){
				PriceEstimation = '$'+PriceEstimation;
			}
			document.getElementById("productESTIMATIONprice").innerHTML = PriceEstimation + " " + Code + "*";
		}
    }
  }