function openSite(url) { var features = "toolbar=no,location=no,status=no,menubar=no"; features += ",scrollbars=no,resizable=no,top=0,left=0"; features += ",width=" + screen.availWidth + ",height=" + screen.availWidth; window.open(url,'shell',features); } function resizeThis() { window.moveTo(0,0); if (document.all) { top.window.resizeTo(screen.availWidth,screen.availHeight); } else if (document.layers||document.getElementById) { if (top.window.outerHeight < screen.availHeight || top.window.outerWidth < screen.availWidth ){ top.window.outerHeight = screen.availHeight; top.window.outerWidth = screen.availWidth; } } } function openNewWindow(URLtoOpen) { newWindow=window.open(URLtoOpen, 'thewin', 'height=270,width=320,toolbar=no,scrollbars=no,status=yes,directories=no'); var left = (screen.availWidth/2 - 160); var top = (screen.availHeight/2 - 135); newWindow.moveTo(left, top); newWindow.focus(); } function openNewsItem(URLtoOpen) { newWindow=window.open(URLtoOpen, 'newswin', 'height=450,width=830,toolbar=no,scrollbars=yes,status=yes,directories=no,resizable=yes'); var left = (screen.availWidth/2 - 400); var top = (screen.availHeight/2 - 225); newWindow.moveTo(left, top); newWindow.focus(); }