/**
 * @author carndt
 */
registerEvents = function(isAdmin) {
	$(document).ready(function() {
		if ($.browser.msie) $("#btnChat").css("cursor","hand"); else $("#btnChat").css("cursor","pointer"); 
		$("#btnChat").bind("click",function(e) { chatOpen(isAdmin);  return false; }); 	
	});
}

chatOpen = function(isAdmin) {
	if (isAdmin == "0")
		window.open('/gc/ChatPopup.aspx', 'chat', 'width=210,height=235,left=100,top=200,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,dependent=yes');
	else
		window.open('/gc/ChatPopup.aspx', 'chat', 'width=500,height=280,left=100,top=200,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,dependent=yes');
}

