function soon(msg) {
if ((msg == "") || (msg == null)) {
msg = "This Feature";
}
msg = msg + " Is Coming Soon";
alert(msg);
}

