function showGoodInfo () {
    //alert(window.location.href);
    //alert(window.location.search);
    
    try {
        var getParams = getUrlVars();
        //getParams['id']
        var domManipulation = new DomManipulation();
        domManipulation.showGoodInfo(getParams['id']);
        
    } catch (e) {
        alert(e);
    }
}
