function SetCookie (name,value,expires,path,domain,secure) {
					  var expdate = new Date ();
					  expdate.setTime (expdate.getTime() + (30 * 24 * 60 * 60 * 1000)); // 30 days from now 
					  expires = expdate;
					  path = "/";
					  document.cookie = name + "=" + escape (value) +
					    ((expires) ? "; expires=" + expires.toGMTString() : "") +
					    ((path) ? "; path=" + path : "") +
					    ((domain) ? "; domain=" + domain : "") +
					    ((secure) ? "; secure" : "");
					}
	

function openChat(skillName){
    if (skillName == 'Corporate'){
        sname = "SESSIONVAR!skill=" + skillName +"&VISITORVAR!CorporateChat=1";
    }
    else{
        sname = "SESSIONVAR!skill=" + skillName +"&VISITORVAR!ConsumerChat=1";
    }
	window.open('http://server.iad.liveperson.net/hc/13302974/?cmd=file&file=visitorWantsToChat&offlineURL=http://www.spectorsoft.com/products/lpinquiry.asp&site=13302974&' + sname + '&imageUrl=https://server.iad.liveperson.net/hcp/Gallery/ChatButton-Gallery/English/General/1a/&referrer='+escape(document.location),'chat13302974','width=472,height=320,resizable=1');
}


