<!--

	// Get Width
	function getWidth() {
		var WindowWidth = document.body.clientWidth;
		document.write(WindowWidth);
	}
	
	// Get Height
	function getHeight() {
		var WindowHeight = document.body.clientHeight;
		document.write(WindowHeight);
	}
		
	//Get Screen Top
	function getWindowTop() {
		var FromTop = self.screenTop;
		document.write(FromTop);
	}		

	//Get Screen Left	
	function getWindowLeft() {
		var FromLeft = self.screenLeft;
		document.write(FromLeft);
	}		


	//Specify the body's width
	function getbodyWidth(left, right) {
		var WindowWidth = document.body.clientWidth;
		//alert( 'WindowWidth='+WindowWidth+' left='+left+' right='+right );
		WindowWidth = WindowWidth - (left+right);
		//alert( 'WindowWidth='+WindowWidth );
		//alert('<div style="width:'+WindowWidth+'px;height:100%;overflow:auto">');
		document.write('<div style="width:'+WindowWidth+'px;height:100%;overflow:auto">');
	}	
//
-->