﻿$(document).ready(function() {
var contentAlias = window.location.pathname.split('/')[2];
$.get("/controls/service/os-isactive.aspx", {id:contentAlias}, function(data) {
if(data != "ok") { $("#readcontentarea").html('');$("#readcontentarea").append(GetMessage());$("#naMessage").show();}
});
});

function GetMessage() { 
var msg = '<div id="naMessage" style="display:none;">';
msg+= '<div style="padding:10px;border-top:2px solid red;font-size:14px;">';
msg+= '<h1 style="color:red;font-size:18px;padding:0;margin:0;">Notice</h1>';
msg+= '<br />Dear Visitor, <br /><br />';
msg+= 'The article you requested is no longer available.<br /><br />';
msg+= 'Please <a href="http://www.livecasinodirect.com/" style="font-weight:bold;font-size:16px;">click here</a> to be redirected to our home page where up-to-date offers and promotions may be found.<br /><br />';
msg+= 'We apologize for any inconvenience.';
msg+= '</div></div>';
return msg;
}