
// ********************************************************
// * nada()  [Do Nothing]                                 *
// ********************************************************

			function nada() {
			
			}



// ****************************************************************
// * We need to be constantly aware of the user's screen size    *
// ****************************************************************


			function placeStuff() {
			
				// Let's see what the available screen size is
			
				var sHeight = this.getSize().y;
				var sWidth = this.getSize().x;
				
			
				// let's place the bottom bar
				
				var bottomBar_top = sHeight - 150;
				
				$('bottomBar').setStyle('top', bottomBar_top);

				// let's place expand the main content window
				
				var bottomBar_top = sHeight - 280;
				
				$('genMainContent').setStyle('height', bottomBar_top);

				
				// let's place the XHTML Icon
				
				var w3cIcon1_top = 10;
				var w3cIcon1_left = sWidth - 94;
				
				$('w3cValidateXHTML').setStyle('top', w3cIcon1_top);
				$('w3cValidateXHTML').setStyle('left', w3cIcon1_left);
				
				
			// That's the end of placeStuff()

			}



// ****************************************************************
// * When the DOM is ready, this will fire                        *
// ****************************************************************

window.addEvent("domready", function(){
	
	
			placeStuff();
			

// END OF DOMREADY
	
});



// ****************************************************************
// * If the Window resizes, this will fire                        *
// ****************************************************************

window.addEvent("resize", function(){
	
	
			placeStuff();


// END OF RESIZE
	
});

