void function hidebox(side)
	{
	var otherside = "left";
	if (side == "left")
		{otherside = "right";}

	if (parent.location.href != self.location.href)
	 	{
		if ( eval("parent." + otherside + "Frame") )
			parent.location = "index2.asp?showbox=" + otherside;
		else
			parent.location = "index2.asp?showbox=none";
		}
	else
		if (confirm("Frames are not correctly loaded, Press Yes to Fix."))
			window.location="index.html";
	}

