window.defaultStatus = "SMART Compliance empowers your business";

function goPage(strPage) {
	var strURL = getHTTPRoot() + '?Page=' + strPage;
	top.location.href = strURL;
}

function goTop(strPage) {
	strPage = trim(strPage)
	if (strPage == '') {
		var strHRef = getAppRoot()
	} else {
		var strHRef = getAppRoot() + '?Page=' + strPage;
	}
	//alert(strHRef);
	if (window == top) {
		window.location.href = strHRef;
	} else {
		top.location.href=strHRef;
	}
}

function goPage(strPage) {
	var strURL = getHTTPRoot() + '?Page=' + strPage;
	top.location.href = strURL;
}
