
var websiteURL = 'http://www.starrwhitehouse.com/';
var framesetString = 'starrwhitehouse-news.html';

function checkFrameset() {
	
	var isInFrameset = (top.location.href.indexOf(framesetString) != -1);
	if (!isInFrameset) {
		top.location.href = websiteURL + framesetString;
	}
	
}

