<!--
	function initPopups() 
	{
		var els = document.getElementsByTagName("a");
		for(var i = 0; i < els.length; i++) 
		{
			if (els[i].className.indexOf("popup") !=- 1) 
				els[i].onclick=popup;
		}
	}

	function popup() 
	{
	    var img=new Image;
	    img.src=this.href;
	    var win=window.open(img.src, "currency_popup", "resizable=0,width=360,height=215");
		if (window.focus) {win.focus()}
	    return false; 
	}
//-->
