// JavaScript Documentfunction VersionNavigator(Netscape, Explorer) {	if ((navigator.appVersion.substring(0,3) >= Netscape && navigator.appName == 'Netscape') ||	(navigator.appVersion.substring(0,3) >= Explorer && navigator.appName.substring(0,9) == 'Microsoft'))	return true;	else return false;}function loadWin(filename, windowname, width, height){               sFeatures = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,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();        }}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();        }}