function openAnyWindow(urlStr, winWidth, winHeight, scroll, resize) { if (navigator.appVersion.indexOf("WebTV") != -1) { window.status="WebTV does not support this feature."; } else { attrStr = "width=" + winWidth + ",height=" + winHeight + ",location=no,menubar=no,scrollbars=" + scroll + ",resizable=" + resize + ",status=no"; anyWindow =window.open(urlStr, 'anyPopUp', attrStr); } anyWindow.focus(); }