
function OpenPrimarySupport(OrgId)
{
	var url="http://www.liveagentchat.com/user/Conversation/StartChat.aspx?OrgId=" + OrgId + "&Referrer="+escape(document.referrer)+"&FromUrl="+escape(location.href)+"&AtTime="+(new Date().getTime());
	var win;
	try
	{
		win=window.open(url,'','status=0,width=600,height=480,toolbars=0,menubar=0,location=0,addressbar=0,address=0,linkbar=0,locationbar=0,scrollbars=0,resizable=0'); 
	}
	catch(x)
	{
	}
	
	if(win==null)
	{
		alert("Please Disable Your Pop-up Blocker.");
	}
}
