

function doTabPageCheck(sURLParent) {
	
	// checks to ensure we aren't loading in a tab page on its own
	// (should always be loaded as part of its parent page).

	var strHref = window.location.href;
	var sPage = strHref.substring(strHref.lastIndexOf('/') + 1).toLowerCase();

	if (strHref.toUpperCase().indexOf("/TABS/")!=-1) { // load in parent
		window.location.href = sURLParent + "?JumpToPage=" + sPage.replace("_content.asp","");
	}
	
	
}