/*
// IF AGENTS ARE AVAILABLE:
function agents_available() {
	document.getElementById('smartbutton').innerHTML = '<a href="#" onClick="window.open(\'https://www.officedesignsoutlet.com/advanced_customer_form.php\',\'custclient\',\'width=500,height=320,scrollbars=0\');return false;"><img src="images/chatOnlineNow.gif" width="148" height="30" alt="chat online" /></a>';
	return true;
}

*/
// IF AGENTS ARE NOT AVAILABLE:
/*function agents_not_available() {
	document.getElementById('smartbutton').innerHTML = '...';
return true;
}
*/

/*  function agents_available() 
   {
    document.getElementById('smartbutton').innerHTML = 
    '<a href="" onClick="window.open(\'https://admin.instantservice.com/links' +
    '/7623/43525\',\'chat_client\',\'width=600,height=324,scrollbars=0\');' +
    'return false;"><img src="http://www.officedesignsoutlet.com/images/chatOnlineNowBan.gif"></a>';
    return true;
   }
*/
  function agents_available(image, smartbutton) 
   {
    document.getElementById(smartbutton).innerHTML = '<a href="" onClick="window.open(\'https://www.officedesignsoutlet.com/advanced_customer_form.php\',\'custclient\',\'width=600,height=600,scrollbars=0\');return false;"><img src="http://www.officedesignsoutlet.com/images/'+ image +'"></a>';
    return true;
   }

  function agents_not_available(image, smartbutton) 
   {
    document.getElementById(smartbutton).innerHTML = 
    '<a href="mailto:sales@officedesignsoutlet.com"><img src="http://www.officedesignsoutlet.com/images/'+ image +'" alt="chat offline" /></a>';
    return true;
   }

