// 17-03-2006 (ERAN): Change pop-up window height

function currencyConverter(id)

{

	window.open("currency_convert.php?id=" + id, null, "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=260,height=390,left=" + ((screen.width - 260) / 2) + "top=" + ((screen.height - 390) / 2));

	return false;

}



function currencyConverter2()

{

	window.open("../currency_convert.php", null, "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=260,height=390,left=" + ((screen.width - 260) / 2) + "top=" + ((screen.height - 390) / 2));

	return false;

}