NKAlert shows alert with provided title and message
NKAlert("title", "message")
<a href="#" onClick="showAlert();">Show NKAlert</a>
When the link is clicked, the "showAlert" function is called & the alert is displayed:
function showAlert()
{
NKAlert("Alert Title", "Your message goes here");
}