function showPage( urlStr, targetDivId)
{
	ajaxUrlString = urlStr;
    /* If the Currency was changed, change the selected icon */
	$.post( ajaxUrlString, function( data )
    {
        $("div#" + targetDivId).html( data );
        $("div#" + targetDivId ).unbind( "ajaxComplete" );
        $("div#" + targetDivId).ajaxComplete( function( e, xhr, settings )
        {
            $("div#" + targetDivId).fadeTo(500, 1);
		});
	});
}

