home *** CD-ROM | disk | FTP | other *** search
- /*
- Copyright (c) 2002-2003 Macromedia, Inc.
- globalnav scripts
- Language: JavaScript 1.2
-
- $Revision: 1.20 $
-
- */
-
- // called by globalnav.swf
- // sets the mediapref cookie
- function setFlash(flash_version_string) {
- var pixelName = 'flash_pixel';
- if (document[pixelName] && flash_version_string) {
- document[pixelName].src = '/set_media_pref?'+flash_version_string;
- }
- }
- function defineFunctions() {
- if (!document.getElementById) {
- if (document.layers) document.getElementById = function(str) { return document.layers[str]; }
- if (document.all) document.getElementById = function(str) { return document.all[str]; }
- }
- }
- function positionContent(y) {
- var contentBox = document.getElementById('contentWrapper');
- if (y && contentBox) {
- contentBox.style.top = y + 'px';
- }
- }
- function calcGlobalnavHeight() {
- var globalmessage = document.getElementById('globalmessage');
- var gma_height = ((globalmessage != null) && (typeof(globalmessage) == 'object')) ? globalmessage.height : 0;
- var height = 64 + gma_height + 8;
- return height;
- }
- //
- //
- function setSWFHeight(h) {
- if (document.getElementById('globalnav-object') != null) {
- document.getElementById('globalnav-object').setAttribute('height',h);
- }
- if (document.getElementById('globalnav-embed') != null) {
- document.getElementById('globalnav-embed').setAttribute('height',h);
- }
- }
- //
- function initPage() {
- defineFunctions();
- if (!document.getElementById('globalnav-object') &&
- !document.getElementById('globalnav-embed') &&
- !document.getElementById('globalnav-primary') &&
- !document.getElementById('global-message')) {
- positionContent(calcGlobalnavHeight());
- }
- }
-