function centerLayout()
{ var layoutWidth = 650; // set the width of the page here 

  if (navigator.appName == 'Netscape') 
  { 
    var bodyWidth = self.innerWidth; 
    var theOffset = ((bodyWidth - layoutWidth)/2) - 1;     
    if (theOffset > 0)
	{
	   document.all.tags('div')['layoutlyr'].style.left=theOffset; 
	   /* 	   
 	   document.write('bodyWidth=' + bodyWidth + ' ');
	   document.write('theOffset=' + theOffset + ' ');
       document.layers['layoutlyr'].left = theOffset; 
	   document.all.tags('layer')['layoutlyr'].style.left=theOffset; 
	   document.all.tags('div')['layoutlyr'].style.left=theOffset; 
	   */ 
	}     
  } 
  else // Not Netscape 
  { 
    var bodyWidth = document.body.offsetWidth;     
    var theOffset = ((bodyWidth - layoutWidth)/2) - 1;     
    if (theOffset > 0)
	{
	   document.all.tags('div')['layoutlyr'].style.left=theOffset; 
	   document.all.tags('layer')['layoutlyr'].style.left=theOffset; 
	   /* 	   
 	   document.write('bodyWidth=' + bodyWidth + ' ');
	   document.write('theOffset=' + theOffset + ' ');
       document.layers['layoutlyr'].left = theOffset; 
	   document.all.tags('layer')['layoutlyr'].style.left=theOffset; 
	   document.all.tags('div')['layoutlyr'].style.left=theOffset; 
	   */ 
	}     
  }
}

 


