//Popup Windows
function show_currency(cur, amt) {
	var Width =310;
	var Height =380;
	var properties =
	',directories=0'+
	',location=0'  +
	',menubar=0'   +
	',scrollbars=0'+
	',status=0'    +
	',toolbar=0'   +
	',resizable=1' +
	',width=' + Width +
	',height='+ Height +
	',screenX=15' +
	',screenY=15' +
	',top=100'  +
	',left=180';

	link='quick_currency_convert.php?cur='+cur+'&amt='+amt;
	popupName='quickcurrency';
	wind=window.open (link, popupName, properties);
	wind.focus();
}

