// Link to Content
onload = function() {
	// SEE IF VARS HAVE BEEN PASSED INTO THE LINK
	if (location.search != "") {
		var myPage;
		myPage = location.search;
		myPage = myPage.split("?");
		parent.content.location = myPage[1];
	}
}