var euro=1.50;
var usdollar=1.53;
var yen=188.9;

function convertCurrency (value, currency)
{
	var converted=0;

	if (currency == "EUR")
	{
		converted = Math.round (100 * value * euro) / 100;
		document.writeln ("(approx " + converted + "€)");
	}
	else if (currency == "USD")
	{
		converted = Math.round (100 * value * usdollar) / 100;
		document.writeln ("(approx US $" + converted + ")");
	}
	else if (currency == "YEN")
	{
		converted = Math.round (100 * value * yen) / 100;
		document.writeln ("(approx " + converted + "¥)");
	}

	return converted;
}

function Convert(value)
{
	var location = "http://www.fieba.net/fieba/openconverter.jsp?FI_from=GBP&FI_to=USD&FI_inputAmount=" + value;
	PopupWindow = window.open ('', 'PopupWindow', 'toolbar=0,location=0,resizable=1,height=220,width=350');
	PopupWindow.focus ();
	PopupWindow.location.href = location;
}

