var htmlContent = `
<p>
Use the following guidelines to select the appropriate template for type of change.
When determined, use the Template selection from the top to pick from the list.
</p>
<p>
<strong>Normal Change</strong> – A change that is not an Emergency change or a Standard change.
Further defined in the selection list by:
</p>
<ul>
<li><em>Low</em> – Does not need CAB review but is not on the Standard list – will go to IT Line Manager for approval.</li>
<li><em>Medium</em> – Approval by IT Line Manager before CAB.</li>
<li><em>High</em> – Needs to be done ASAP but does not meet Emergency criteria.</li>
</ul>
<p>
<strong>Standard Change</strong> – A repeatable change that has been pre‑authorized.
<span style="color:red;">Standard changes must be on the below listing.</span>
If they are not, use the Normal–Medium (which will go to CAB) until CAB review,
which may deem it appropriate to add to the standard list.
</p>
<p>
<strong>Emergency Change</strong> – A change that must be implemented immediately to resolve a major incident, restore critical service, or address a high‑impact security or compliance risk.
<span style="color:red;">Standard changes must be on the below listing.</span>
If they are not, use the Normal–Medium (which will go to CAB) until CAB review,
which may deem it appropriate to add to the standard list.
</p>
`;
$CS.showInfo(htmlContent, {
height: 300,
width: 1000,
title: "Change Associate HelpText",
closeOnEscape: false,
open: function (event, ui) {
// Hide the (X) close icon
jQuery(".ui-dialog-titlebar-close").hide();
},
buttons: {
"Continue": function () {
jQuery(this).dialog("close");
},
"Close": function () {
// Trigger form cancel button
$CS.findElement("cancel").trigger("click");
jQuery(this).dialog("close");
}
},
}, "dialog")