// Copyright 2004 mikebecvar.com - Last Updated 05-September-2004 by MDB -  mike @ mikebecvar . com


function resizeIframe(pPage) {
	if (window == top) {
		vPage = "index.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;
		iWidth = document.body.scrollWidth;
		if ( iHeight < 480 )
		{
			iHeight = 400;
		}
		i.style.height = iHeight + 45;
		if ( iWidth < 480 )
		{
			iWidth = 400;
		}
		i.style.width = iWidth + 10;
	}
}

function setActiveLink(pElement)
{
	vLinks = imageMenu.getElementsByTagName("a");
	if (vLinks.length)
	{
		for (i=0; i < vLinks.length; i++)
		{
			vLinks[i].className = "Link";
		}
	}
	
	pElement.className = "Link ActiveLink";
}
