﻿document.write('<img id=countryflag_img style=\'width:18px;height:12px\' />');
var CountryCode = {
    Refresh:function(){
        if (typeof (Newport) != "undefined" && typeof (Newport.countrycode) != "undefined" && typeof(Newport.application_root_url) != "undefined") {
            var newurl = Newport.application_root_url +  "common/images/flags/" + Newport.countrycode + ".gif";
            document.getElementById('countryflag_img').src = newurl;
        }
    }
};

jQuery(document).ready(function(){
    CountryCode.Refresh();
    }
)
