function commaToDot(str)
{
	return str.replace(",",".");
}
function dotToComma(str)
{
	var fix = ""+str
	return fix.replace(".", ",");
}
function formatPriceTag(str)
{
	var fx = ""+str;
	var fixed = new Number(fx);
	
	/*var checkCents = fx.split(".");
	var formatted = "";
	if(checkCents[1].length == 1)
	{
		checkCents[1] = checkCents[1]+"0";
		var fix = new Number(checkCents[1]);
		checkCents[1] = fix.toFixed(0);
	}
	formatted = checkCents.join(",");
	return formatted;*/
	return fixed.toFixed(2);
	
}

