// Copyright 2004 GPGP.net - Last Updated 15-August-2004 by MDB -  mbecvar @ pressroom . com


function resizeIframe(pPage) {
	if (window == top) {
		vPage = "../directory.html";
		if (pPage) { vPage  = "../" + pPage; }

		vPage = "../index.html"; // Added 08/17/2004 to redirect Search Engine Users to Home Page
		top.location.href = vPage;
	}
				
	else if ( window.name ) {

		i = parent.document.getElementById(window.name);
		iHeight = document.body.scrollHeight;
		if ( iHeight < 400 )
		{
			iHeight = 400;
		}
		i.style.height = iHeight + 45;
	}
}

