// 
var chatSearchType = "S";
function setChatType(chatTypeChat){
	chatSearchType = chatTypeChat;
}

function Chat(){
	var address = "/chat_session.php?action=create&chat_type=" + chatSearchType;
	newWindow = window.open(address, "chatWindow", "height=580,width=530,directories=no,location=no,menubar=no,scrollbars=yes,status=yes,toolbar=no,resizable=yes");
	newWindow.moveTo(0,0);
	newWindow.focus();
}
