function ShowProductRestockDialog() { var productName = clientInfo.uiElement.innerText var googleUrl = 'https://www.google.com/#tbm=shop&q=' + productName; var amazonUrl = 'https://smile.amazon.com/s/?field-keywords=' + productName; var googleImage = './Config/Images/Google_Icon.png'; var amazonImage = './Config/Images/Amazon_Icon.png'; var html = '
'; html += '

' + clientInfo.GetLanguageData("RestockDialog_promptText", false).Html + '

'; html += '

'; html += '' + clientInfo.GetLanguageData('; html += '' + clientInfo.GetLanguageData('; html += '
'; clientInfo.LoadHtmlDialog(html, { height: 400, width: 550, titleText: clientInfo.GetLanguageData("RestockDialog_title", false).Html + " " + productName, useTabContainer: true, //okCallback:function() //{ //clientInfo.ServerCallback('EventName', 'Arg1'); //}, showButtons: true }); }