function floatLayerTwo()
	{
	myWidth=checkScreen()/2;
	/* Well, Mozilla... */
	 if (document.implementation && document.implementation.hasFeature && document.implementation.hasFeature("CORE","2.0"))
		{
		document.getElementById('LayerTwo').style.width="491px";
		document.getElementById('LayerTwo').style.height="auto";
		document.getElementById('LayerTwo').style.padding="13px";
		document.getElementById('LayerTwo').style.background="#A9C8E7";
		document.getElementById('LayerTwo').style.display="block";
		document.getElementById('LayerTwo').style.position="fixed";
		document.getElementById('LayerTwo').style.top="167px";
		myLeft=myWidth-229;
		document.getElementById('LayerTwo').style.left=myLeft+"px";
		document.getElementById('LayerTwo').style.zIndex="73";
		document.getElementById('LayerTwo').style.borderColor="Gray";
		document.getElementById('LayerTwo').style.border="1px solid rgb(255,255,255)";
		document.getElementById('LayerTwoShadow').style.width="521px";
		document.getElementById('LayerTwoShadow').style.height="276px";
		document.getElementById('LayerTwoShadow').style.padding="3px";
		//document.getElementById('LayerTwoShadow').style.background="#000000";
		document.getElementById('LayerTwoShadow').style.backgroundImage="url(mime/png/background_layerTwoShadow.png)";
		document.getElementById('LayerTwoShadow').style.backgroundPosition="bottom right";
		document.getElementById('LayerTwoShadow').style.backgroundRepeat="no-repeat";
		document.getElementById('LayerTwoShadow').style.display="block";
		document.getElementById('LayerTwoShadow').style.position="fixed";
		document.getElementById('LayerTwoShadow').style.top="177px";
		myLeft=myWidth-219;
		document.getElementById('LayerTwoShadow').style.left=myLeft+"px";
		document.getElementById('LayerTwoShadow').style.zIndex="72";
		}
	else
		{
		/* Workaround to patch IE and avoid non fully compliant DOM browsers such as Opera 6.02 */
		/* curiously, if (document.getElementById('LayerTwo').style.width) returns false in IE...*/
		if (document.getElementById('LayerTwo').style && document.all)
			{
			document.getElementById('LayerTwo').style.width="491px";
			document.getElementById('LayerTwo').style.height="auto";
			document.getElementById('LayerTwo').style.padding="13px";
			document.getElementById('LayerTwo').style.background="#A9C8E7";
			document.getElementById('LayerTwo').style.display="block";
			document.getElementById('LayerTwo').style.position="absolute";
			document.getElementById('LayerTwo').style.top="167px";
			myLeft=myWidth-229;	
			document.getElementById('LayerTwo').style.left=myLeft+"px";
			document.getElementById('LayerTwo').style.zIndex="73";
			document.getElementById('LayerTwo').style.borderColor="Gray";
			document.getElementById('LayerTwo').style.border="1px solid rgb(255,255,255)";
			document.getElementById('LayerTwo').style.borderStyle="ridge";
			document.getElementById('LayerTwoShadow').style.width="521px";
			document.getElementById('LayerTwoShadow').style.height="257px";
			document.getElementById('LayerTwoShadow').style.padding="3px";
			//document.getElementById('LayerTwoShadow').style.background="#000000";
			document.getElementById('LayerTwoShadow').style.backgroundImage="url(mime/png/background_layerTwoShadow.png)";
			document.getElementById('LayerTwoShadow').style.backgroundPosition="bottom right";
			document.getElementById('LayerTwoShadow').style.backgroundRepeat="no-repeat";
			document.getElementById('LayerTwoShadow').style.display="block";
			document.getElementById('LayerTwoShadow').style.position="absolute";
			document.getElementById('LayerTwoShadow').style.top="177px";
			myLeft=myWidth-219;
			document.getElementById('LayerTwoShadow').style.left=myLeft+"px";
			document.getElementById('LayerTwoShadow').style.zIndex="72";
			}
		}
	}
	
/* Makes the wolves splashscreen disappear. */
function freeLayerTwo()
	{
	if (document.getElementById)
		{
		document.getElementById('LayerTwo').style.display='none';
		document.getElementById('LayerTwoShadow').style.display='none'
		}
	}


/* This function allows the rightColumn to remain readable on small screens. */
function checkScreen()
	{
	/* Computing the window width the compliant ones, for IE, and the other ones */
	var myWidth="";
	if (window.innerWidth)
		{
		myWidth=window.innerWidth;
		}
	else
		{
		if (document.body.clientWidth)
			{
			myWidth=document.body.clientWidth;
			}
		else
			{
			myWidth="unsettable";
			}
		}
	//alert(myWidth);
	return myWidth;
	} // end of function
