function openClient() { var client = window.open("", "client", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,dependent,width=740,height=560"); client.focus(); } function openClient2(url, target) { var client = window.open(url, target, "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,dependent,width=740,height=560"); if (client != null) { client.focus(); return false; } else { return true; } } function openPopup(width,height,name) { if (!width) width = 740; if (!height) height = 560; if (!name) name = "habbopopup"; client = window.open("", name, "width="+width+",height="+height); }