	<!--//
	function showCurrencyConverter(value)
		{
	var currencyURL = '/uploads/currency_converter.html?value=' + value;
			newWindow = window.open(currencyURL,
			"currencyWindow",
			"status=no,"+
			"toolbar=no,"+
			"location=no,"+
			"directories=no,"+
			"menu=no,"+
		 	"scrollbars=yes," +
			"resizable=yes," +
			"width=400," +
			"height=400");
			
		}
	//-->