function e24StartChat()
{
	var resize='no';
	if (fe24resizable == 1)
	{
		resize='yes';	
	}
	
	var prot='http://';
	if (fe24secure)
	{
		prot='https://';
	}
	
	var frmdoc='';
	frmdoc += "<html><head><title>eDialog24 Chat</title></head><body>";
	frmdoc += "<form name='frmEntryClick' action='"+prot+fe24domain+"/cmd' method='POST'>";
	frmdoc += "<input type='hidden' name='OP' value='ENTRYPOINTCLICK'>";
	frmdoc += "<input type='hidden' name='mainid' value='"+fe24mainid+"'>";
	frmdoc += "<input type='hidden' name='epname' value='"+fe24entrypoint+"'>";
	frmdoc += "<input type='hidden' name='location' value='"+fe24location+"'>";
	frmdoc += "<input type='hidden' name='backup' value='"+fe24backup+"'>";
	frmdoc += "<input type='hidden' name='orgname' value='"+fe24orgname+"'>";
	frmdoc += "<input type='hidden' name='e24em' value='"+fe24em+"'>";
	frmdoc += "<input type='hidden' name='e24fn' value='"+fe24fn+"'>";
	frmdoc += "<input type='hidden' name='e24ln' value='"+fe24ln+"'>";
	frmdoc += "<input type='hidden' name='e24ph' value='"+fe24ph+"'>";
	frmdoc += "<input type='hidden' name='e24mo' value='"+fe24mo+"'>";
	frmdoc += "</form>";
	frmdoc += "<script type='text/javascript'>setTimeout('document.forms.frmEntryClick.submit();',10);</script>";
	frmdoc += "</body></html>";
	var newwin = window.open("","ed24Customer","width=532,height=515,resizable="+resize+",scrollbars=no");
	newwin.document.write(frmdoc);
	newwin.document.close();
}