
function FisDbPopup(cUrl)
{
    // open new window;
    // no spaces in string, bug in function window.open()
    var cWindow = window.open(cUrl,"SHPopup","width=320,height=400,resizable=yes,scrollbars=yes");

    // bring window to top
    if( !cWindow.opener )
    {
    	cWindow.opener = self;
    }

    if( cWindow.focus != null )
    {
    	cWindow.focus();
    }
}

