// Smartbutton Include File
// Customize the IMG SRC tags for the images you are using
// Customize the customer and dept

// IF AGENTS ARE AVAILABLE: 
function agents_available() { 
	var xurl = decodeURI(window.location);
	var date = new Date();
	date.setTime(date.getTime() + (120*24*60*60*1000));
	var expires = "expires=" + date.toGMTString();

	if(xurl.match("purchase/")) 
	{
		if (document.getElementById('smartbutton'))
		{
			document.getElementById('smartbutton').innerHTML = '<A HREF="" onClick="document.cookie=\'checkout=OSA; domain=.pctools.com; path=/; ' + expires + '\';window.open(\'https://admin.instantservice.com/Customer?ai=6115&di=43017&optionaldata5='+window.location+'&optionaldata6='+document.referrer+'&trackingid='+ISVT_getVTID()+'\',\'custclient\',\'width=500,height=320,scrollbars=0\');return false;"><IMG SRC="https://secure.pctools.com/res/images/chat/purchase_page.jpg"></A>'; 
		}
	}
	else 
	{ 
		if(xurl.match("products/") || xurl.match("/pc-software/") || xurl.match("/security-software/") || xurl.match("/utility-software/")) 
		{
			if (document.getElementById('smartbutton'))
			{
				document.getElementById('smartbutton').innerHTML = '<A HREF="" onClick="document.cookie=\'checkout=OSA; domain=.pctools.com; path=/; ' + expires + '\';window.open(\'https://admin.instantservice.com/Customer?ai=6115&di=43018&optionaldata5='+window.location+'&optionaldata6='+document.referrer+'&trackingid='+ISVT_getVTID()+'\',\'custclient\',\'width=500,height=320,scrollbars=0\');return false;"><IMG SRC="https://secure.pctools.com/res/images/chat/product_list.jpg"></A>'; 
			}
		}
		else
		{
			if (document.getElementById('smartbutton'))
			{
				document.getElementById('smartbutton').innerHTML = '<A HREF="" onClick="document.cookie=\'checkout=OSA; domain=.pctools.com; path=/; ' + expires + '\';window.open(\'https://admin.instantservice.com/Customer?ai=6115&di=43018&optionaldata5='+window.location+'&optionaldata6='+document.referrer+'&trackingid='+ISVT_getVTID()+'\',\'custclient\',\'width=500,height=320,scrollbars=0\');return false;"><IMG SRC="https://secure.pctools.com/res/images/chat/product_page.jpg"></A>'; 
			}
		}
	}

	return true; 
} 
  
// IF AGENTS ARE NOT AVAILABLE: 
function agents_not_available() { 
	document.getElementById('smartbutton').innerHTML = '<IMG SRC="https://secure.pctools.com/res/images/chat/offline.jpg">'; 
	return true; 
}

var ii_e = document.createElement("img");
var onloadtest = function(){agents_available();};
var onerrortest = function(){agents_not_available();};
ii_e.onload =  onloadtest;
ii_e.onError =  onerrortest;
ii_e.src = "//admin.instantservice.com/resources/smartbutton/6115/43017/available.gif?'+Math.floor(Math.random()10001)+'";

