var newWin = null;
function openChatWindow()
{
var WinProp = "width=1,height=1,menubar=no,location=no,directories=no,status=no,toolbar=no,resizable=no,screenX=0,screenY=0,left=0,top=0";
var chaturl = "https://chat.dcu.org/launchChat/generalPool.html";
newWin = window.open(chaturl, "", WinProp);
}

