/*
function agents_available() {
    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.homeofficesolutions.com/images/chatOnlineNowBan.gif"></a>';
    return true;
}

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

function agents_available(image, smartbutton) {
    document.getElementById(smartbutton).innerHTML = '<a href="" onClick="window.open(\'../static/includes/advanced_customer_form.php\',\'custclient\',\'width=600,height=600,scrollbars=0\');return false;"><img src="../static/images/'+ image +'" alt="chat online" /></a>';
    return true;
}

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

