// JavaScript Document
// copyright Aaron Hokanson | www.hokansonstudios.com | aaron@hokansonstudios.com
<!--

function loadWin(filename, windowname, width, height)
{       
        sFeatures = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + width + ",height=" + height;
        var wAppWindow = window.open( filename, windowname, sFeatures );
        
        sBrowserInfo = new String( navigator.appVersion );
        
        // If the browser is not Mac or IE3, then bring window to front. This is automatic on Mac IE3 and will cause a javascript error if you force the focus.
        
        if ( sBrowserInfo.indexOf( "Macintosh" ) == -1 && sBrowserInfo.indexOf( "MSIE 3" ) == -1 )
        {
                wAppWindow.window.focus();
        }

}

function loadWin2(filename, windowname, width, height)
{       
        sFeatures = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height;
        var wAppWindow = window.open( filename, windowname, sFeatures );
        
        sBrowserInfo = new String( navigator.appVersion );
        
        // If the browser is not Mac or IE3, then bring window to front. This is automatic on Mac IE3 and will cause a javascript error if you force the focus.
        
        if ( sBrowserInfo.indexOf( "Macintosh" ) == -1 && sBrowserInfo.indexOf( "MSIE 3" ) == -1 )
        {
                wAppWindow.window.focus();
        }

}
-->