	function getNewPosition()
	{
		
		if(comingsoon!="yes")
		{
			var varIncrementX;			// This parameter calculates the X distance that needs to be added
			var newleft;				// This is the new X co-ordinate

			// Get the portion from left/right that is outside the main table boundary
			
			if(document.layers)								// If NS4.7
				varIncrementX = (window.innerWidth-744)/2;
			else
				varIncrementX = (document.body.clientWidth-744)/2;

			if(varIncrementX > 0)
				newleft = 200 + varIncrementX - 16;
			else
				newleft = 200;

			// For menu1

			if(document.layers)								// If NS4.7
			{
				if(varIncrementX > 0)
					document.layers[0].left = newleft - 8;
				else
					document.layers[0].left = newleft;
			}
			else
				document.getElementById("Menu0").style.left = newleft + "px";

			//For menu2
			newleft = newleft + 289;
		
			if(document.layers)								// If NS4.7
			{
				if(varIncrementX > 0)
					document.layers[1].left = newleft - 8;
				else
					document.layers[1].left = newleft;
			}
			else
				document.getElementById("Menu1").style.left = newleft + "px";

			//	For menu3
			newleft = newleft + 88;
		
				if(document.layers)								// If NS4.7
			{
				if(varIncrementX > 0)
					document.layers[2].left = newleft - 8;
				else
					document.layers[2].left = newleft;
			}
			else
				document.getElementById("Menu2").style.left = newleft + "px";
		}//if
		else
		{
			
				var varIncrementX;			// This parameter calculates the X distance that needs to be added
				var newleft;				// This is the new X co-ordinate

			// Get the portion from left/right that is outside the main table boundary
			

			if(document.layers)								// If NS4.7
				varIncrementX = (window.innerWidth-744)/2;
			else
				varIncrementX = (document.body.clientWidth-744)/2;
		

			if(varIncrementX > 0)
				newleft = 200 + varIncrementX - 16;
			else
				newleft = 200;

			// For menu1

			if(document.layers)								// If NS4.7
			{
				if(varIncrementX > 0)
					document.layers[0].left = newleft - 8;
				else
					document.layers[0].left = newleft;
			}
			else
				document.getElementById("Menu0").style.left = newleft + "px";

			// For menu2
			newleft = newleft + 142;
		
			if(document.layers)								// If NS4.7
			{
				if(varIncrementX > 0)
					document.layers[1].left = newleft - 8;
				else
					document.layers[1].left = newleft;
			}
			else
				document.getElementById("Menu1").style.left = newleft + "px";

			// For menu3
			newleft = newleft + 145;
		
			if(document.layers)								// If NS4.7
			{
				if(varIncrementX > 0)
					document.layers[2].left = newleft - 8;
				else
					document.layers[2].left = newleft;
			}
			else
				document.getElementById("Menu2").style.left = newleft + "px";

			// For menu4
			newleft = newleft + 90;
		
			if(document.layers)								// If NS4.7
			{
				if(varIncrementX > 0)
					document.layers[3].left = newleft - 8;
				else
					document.layers[3].left = newleft;
			}
			else
				document.getElementById("Menu3").style.left = newleft + "px";

		}//else

	}//function

