/**
 * Chat link script
 *
 * Converts the a#chat into a javascript link that pops open a window.
 */

document.observe(
	"dom:loaded",
	function ()
	{
		$('chat').observe(
			"click",
			function (evt)
			{
				evt.stop();
				window.open("/help/livehelp.php?", "LiveChat", "width=585,height=390,menubar=no,scrollbars=1,resizeable=1");
			}
		);
	}
);

