function price(price, us_dollar)

{
	var ex_rate = 0.92

	if (price > 0)
		{document.write("$",price," (around $",parseInt(price * ex_rate)," US)")}	

	if (us_dollar > 0)
		{document.write(parseInt(us_dollar * ex_rate))}

}