// To make sure the data page is not opened outside the frameset

if (top.location == location)
        location = "../index.html";

// To define the personal information button handler

function show(field, theWidth, theHeight) {
	var theURL = "Individuals/" + field.name + ".html";
	var theProperties = "scrollbars,resizable,width=" + theWidth + ",height=" + theHeight;
	newWindow = open(theURL, field.name, theProperties);
}

