					<!--//



					var intMenuHeight, intWindowHeight, intFooterTop, intFooterLeft;

					function returnWindowHeight() {

						if( typeof( window.innerWidth ) == 'number' ) {

							// NONE IE
							intWindowHeight = window.innerHeight;

						} else {

							if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {

								//IE 6
								intWindowHeight = document.documentElement.clientHeight;

							} else {

						  		if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {

									//IE 4
									intWindowHeight = document.body.clientHeight;

								}
							}
						}

						return intWindowHeight;

					}

					function positionFooter() {

						var intMainContentHeight;

						// GET WINDOW HEIGHT
						intWindowHeight = returnWindowHeight() - 37;

						// GET MENU HEIGHT
						if (document.getElementById) {
							intMainContentHeight = document.getElementById('mainContent').offsetHeight;
						} else if (document.all) {
							intMainContentHeight = document.all['mainContent'].scrollHeight;
						} else if (document.layers) {
							intMainContentHeight = document['mainContent'].clip.bottom;
						}


						// COMPARE HEIGHTS

						//alert(parseInt(intMainContentHeight) + ',' + parseInt(intWindowHeight));

						if ( parseInt(intWindowHeight) > parseInt(intMainContentHeight) ) {
							intFooterTop = intWindowHeight;
						} else {
							intFooterTop = intMainContentHeight;
						}

						intFooterLeft = 14;

						if (document.getElementById) {
							intFooterTop = intFooterTop + 'px';
							intFooterLeft = intFooterLeft + 'px';
						}

						// ADJUST FOOTER HEIGHT
						var objLyr = new getObj('footer');
						objLyr.style.left = intFooterLeft;
						objLyr.style.top = intFooterTop;
						objLyr.style.visibility = 'visible';

					}


					// MAIN DIV POSITION ATTRIBUTES
					arrMainContent = new Array('mainContent',0,0,1);
					arrAustralianOpenPanel = new Array('topPanel',0,-1,1);
					arrMastHead =  new Array('mastHead',0,25,1);

					// DYNAMICALLY CREATED DIV ATTRIBUTES (MENU FLYOUTS)
					arrFlyOutExample = new Array('flyOutExample',164,211,0);

					// ALL DIV ATTRIBUTES
					arrLayers = new Array(arrMainContent,arrAustralianOpenPanel,arrMastHead);
					//arrLayers = new Array(arrMainContent,arrMastHead);

					function initPage() {

						var intLeft, intTop;

						for ( i = 0; i < arrLayers.length; i++ ) {
							
							if (document.getElementById) {
								intLeft = arrLayers[i][1] + 'px';
								intTop = arrLayers[i][2] + 'px';
							} else {
								intLeft = arrLayers[i][1];
								intTop = arrLayers[i][2];
							}

							var objLyr = new getObj(arrLayers[i][0]);
							objLyr.style.left = intLeft;
							objLyr.style.top = intTop;


							// NOT ALL LAYERS SHOULD BE SHOWN
							if ( arrLayers[i][3] == 1 ) {
								objLyr.style.visibility = 'visible';
							}
							

						}

						positionFooter();

					}

					function reSizeBrowser() {

						if (document.getElementById) {
							positionFooter();
						} else {
							window.location.reload();
						}
					}

					//-->

