<!--				
			
	function adjustPage()
		{
			var objElement = null;
			var intHeight = 0;
			
			//adjust the column dividing lines			
			objElement=findDOM('catalogue_container',0);
			intHeight=objElement.offsetHeight;						
						
			//adjust the background and border elements
			if(intHeight > 788)
				{
					objElement=findDOM('border_lhs',1);
					objElement.height=intHeight + 500 + "px";
					objElement=findDOM('border_rhs',1);
					objElement.height=intHeight + 500 + "px";
					objElement=findDOM('border_bott',1);
					objElement.top=intHeight + 543 + "px";					
					objElement=findDOM('bg_main',1);
					objElement.height=intHeight + 134 + "px";
					objElement=findDOM('bg_menu',1);
					objElement.height=intHeight - 425 + "px";	
					objElement=findDOM('footer_image',1);
					objElement.top=intHeight + 600 + "px";				
				}
			
		}
		
//-->

