NS4 = document.layers;

if (document.layers) // resize absolutely positioned DIVs for Netscape Navigator only...
{
//alert(window.document.width + "," + document.width);	
//alert(window.document.height + "," + document.height);	
	if ((window.document.height <= document.height + 150) && (window.document.height > 0))
	{
	   window.document.height = document.height + 150;
	}

	if ((window.document.width <= document.width + 150) && (window.document.width > 0))
	{
	   window.document.width = document.width + 150;
	}
//alert(window.document.height + "," + document.height);
//alert(window.document.width + "," + document.width);	
}


function reloadPage() 
{

//	if (innerWidth != origWidth || innerHeight != origHeight)
//	{
//		location.reload();
//	}
//	else
//	{
//alert(window.document.height + "," + document.height);
	if (window.document.height <= document.height + 150)
	{
	   window.document.height = document.height + 150;
	}


	if ((window.document.width <= document.width + 200) && (window.document.width > 0))
	{
	   window.document.width = document.width + 200;
	}

//alert(window.document.height + "," + document.height);
//		window.document.height = document.height + 150;
//	}
}
if (NS4) onresize = reloadPage;
if (NS4) onload = reloadPage;