// JavaScript Document

function agents_available() 
{
$('#staticbanner').hide();
$('#banner').html( 
'<a href="" onClick="window.open(\'https://admin.instantservice.com/links' +
'/6392/Default\',\'chat_client\',\'width=500,height=320,scrollbars=0\');' +
'return false;"><img src="/images/mbox/SliverBanner_LiveChat-1009.gif"></a>').show();

$('#banner2').html( 
'<div style="height:30px;"><a href="" onClick="window.open(\'https://admin.instantservice.com/links' +
'/6392/Default\',\'chat_client\',\'width=500,height=320,scrollbars=0\');' +
'return false;"><img src="/images/mbox/SliverBanner_LiveChat-1009.gif"></a></div>');

$('#talktoagent').html( 
'<div style="height:30px;"><a href="" onClick="window.open(\'https://admin.instantservice.com/links' +
'/6392/Default\',\'chat_client\',\'width=500,height=320,scrollbars=0\');' +
'return false;"><img src="https://www.campingworld.com/images/smalllivechatbutton.jpg"></a></div>').show();

return true;
}

function agents_not_available() 
{
$('#staticbanner').show();
$('#banner').html('');
$('#banner2').html('');
$('#talktoagent').html('');
return true;
}
