function changePages(topURL, leftURL, meatURL) {
	parent.frameTop.location.href=topURL;
	parent.frameLeft.location.href=leftURL;
	parent.frameText.location.href=meatURL;
}

function changeText(meatURL) {
	parent.frameText.location.href=meatURL;
}

function changeTwo(topURL, meatURL) {
	parent.frameTop.location.href=topURL;
	parent.frameText.location.href=meatURL;
}