var popupWin;

function popup_OpenWindow(URL) {
	popupWin=window.open(Root + '/popup.php/'+URL,'PopupWin','toolbar=0,titlebar=0,location=0,directories=0,status=0,menubar=0,resizable=1,scrollbars=0,left=180,top=80,width=814,height=504');
	popupWin.focus();
	//resize(popupWin);
}

function resize(self) {
    // for Gecko
    if ( typeof( self.sizeToContent ) == 'function' ) {
        self.sizeToContent();
        //self.scrollbars.visible = false;
        // give some more space ... to prevent 'fli(pp/ck)ing'
        self.resizeBy( 10, 50 );
        return;
    }

    // for IE, Opera
    if (document.getElementById && typeof(document.getElementById('WindowContainer')) != 'undefined' ) {
        // get content size
        var newWidth  = document.getElementById('WindowContainer').offsetWidth;
        var newHeight = document.getElementById('WindowContainer').offsetHeight;

        // set size to contentsize
        // plus some offset for scrollbars, borders, statusbar, menus ...
        self.resizeTo( newWidth , newHeight + 40 );
    }
}
