    // IF AGENTS ARE AVAILABLE:
function agents_available() 
{
  document.getElementById('smartbutton').innerHTML = '<br>' +
	'<A HREF="" onClick="window.open(\'https://admin.instantservice.com/links/5954/15656\',' + 
	'\'custclient\',\'width=600,height=280,scrollbars=1\');return false;">' + 
	'<IMG SRC="http://i81.photobucket.com/albums/j210/natreffi/TCI_Reactive.jpg"></A>';
  return true;
}
// IF AGENTS ARE NOT AVAILABLE:
function agents_not_available() 
{
  document.getElementById('smartbutton').innerHTML = ''
  	//'<br>' +
	//'Click <a href="mailto:IS5954_15656@is.instantservice.com">here</a&t; to send an email.';
  return true;
}

//Show chat status 
function printDiv(){
	document.write('<div id="smartbutton" STYLE="position: ABSOLUTE; top:0px; left:624px"></div>');
}

//Main function that pulls above functions together
function chatService(){
    document.write('<img src="http://admin.instantservice.com/resources/smartbutton/5954/15656/available.gif?' + 
                   Math.floor(Math.random()*10001)+'" style="width:0;height:0;visibility:hidden;position:absolute;"' +
                   ' onLoad="agents_available()" onError="agents_not_available()">');
	printDiv();
}

/*Insert Script in all pages
 */